-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
67 lines (58 loc) · 2.76 KB
/
main.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hitesh Dialani - Website</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your external CSS file -->
<script src="script.js"></script> <!-- Link to your JavaScript file -->
<style>
header {
margin-top: 50px; /* Adjust the margin-top value as needed to create space below the education box */
}
</style>
</head>
<body>
<section id="home-box">
<a href="main.html">Home</a>
</section>
<section id="education-box">
<a href="Education.html">Education</a>
</section>
<section id="experience-box">
<a href="Experience.html">Experience</a>
</section>
<section id="project-box" class="education-block">
<select name="project" id="project" class="block-select" onchange="navigateToProject()">
<option value="" disabled selected>Select a project</option>
<option value="Project/Project1.html">Project 1</option>
<option value="Project/TI_2MTR_DYNO_motor/TI_2MTR_DYNO_motor.html">TI_2MTR_DYNO_motor</option>
<!-- Add more project options as needed -->
</select>
</section>
<header>
<h1>Welcome to my website</h1>
<nav>
<ul>
<li><a href="#blog">Blog</a></li>
<li><a href="#cv"><a href="cv.html">CV</a>.</a></li>
<li><a href="#linkedin"><a href="https://nl.linkedin.com/in/hitesh-dialani">LinkedIn</a></a></li>
<li><a href="#github"><a href="https://github.com/HDialani">GitHub</a>.</p></a></li>
</ul>
</nav>
</header>
<section id="home">
<h2>About Me</h2>
<p>
I am Hitesh Dialani, holding a Master's degree in Electrical Engineering with a specialization in Power Electronics and Motors. I did both my master and bachelor in <a href="https://www.tudelft.nl/en/eemcs/">Electrical Engineering, Mathematics and Computer Science (EEMCS)</a> faculty in <a href="https://www.tudelft.nl/en/about-tu-delft">Delft University of Technology</a>.
</p>
<!-- Add more information about yourself here -->
<p>
Currently I am a research and education technician for the <a href="https://www.tudelft.nl/ewi/onderzoek/faciliteiten/esp-lab">Electrical Sustainable Power(ESP) lab </a> for the <a href="https://www.tudelft.nl/ewi/over-de-faculteit/afdelingen/electrical-sustainable-energy/dc-systems-energy-conversion-storage/">DC Systems, Energy Conversion & Storage (DCES) </a> department.
</p>
</section>
<footer>
<p>© 2023 Hitesh Dialani</p>
</footer>
</body>
</html>