-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (110 loc) · 3.47 KB
/
index.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Resume</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
</head>
<body>
<section class="nav">
<div>
<ul>
<li><a href="#Home">Home</a></li>
<li><a href="#About">About</a></li>
<li><a href="#Education">Education</a></li>
<li><a href="#Skills">Skills</a></li>
<li><a href="#Hobbies">Hobbies</a></li>
<li><a href="#Contact">Contact Me</a></li>
</ul>
</div>
</section>
<section class="home" id ="Home">
<div class="inner">
<img src="profile.jpg"/>
<h1>Prakhar Agrawal</h1>
</div>
</section>
<section class="about" id="About">
<div class = "inner">
<div class = "inner2">
<h1>About</h1>
<a>I am pursuing my B.Tech degree in Information and Communication Technology from Dhirubhai Ambani Institute of Information and Communication Technology, one of the most renowned engineering college of Gujarat. I am currently in first year and had learned many computer languages like python, C and C++, now I am learning there practical use in daily life. I love to learn new technologies and how they work also I love to made small projects on arduino and raspberry pi.
</a>
</div>
</div>
</section>
<section class = "education" id ="Education">
<div class="inner">
<h1>Education</h1>
<div>
<img src="schoolicon.png"/>
<h3>Bakhshi's Springdales Sr. Sec. School</h3>
<h5>Graduated in 2018</h5>
</div>
<div>
<img src="collegeicon.png"/>
<h3>DAIICT College</h3>
<h5>2019-2023</h5>
</div>
</div>
</section>
<section class="skills" id ="Skills">
<div class="inner">
<h1>Skills</h1>
<div>
<ul class="heading">
<li>SOFTWARES</li>
<ul class="subpart">
<li>AutoCAD</li>
<li>DeepTrace</li>
<li>MATLAB</li>
</ul>
</ul>
</div>
<div>
<ul class="heading">
<li>PROGRAMMING LANGUAGES</li>
<ul class="subpart">
<li>C</li>
<li>C++</li>
<li>Python</li>
</ul>
</ul>
</div>
<div>
<ul class="heading">
<li>OTHERS</li>
<ul class="subpart">
<li>Arduino</li>
<li>Raspberry pi</li>
</ul>
</ul>
</div>
</div>
</section>
<section class="hobbies" id ="Hobbies">
<h1>Hobbies</h1>
<div>
<img src="gaming.png"/>
<h3>GAMING</h3>
</div>
<div>
<img src ="camera.png"/>
<h3>PHOTOGRAPHY</h3>
</div>
<div>
<img src="arduino.png"/>
<h3>DIY Projects</h3>
</div>
</section>
<section class="contact" id ="Contact">
<h1>Contact Me</h1>
<div class"inner">
<h3>Email at [email protected]</h3>
<h6>+919462200865</h6>
</div>
</section>
</body>
</html>