-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (94 loc) · 2.45 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
<!DOCTYPE html>
<!-- document type - html 5 -->
<html lang="en">
<!-- everything here on is a html code -->
<head>
<!-- info about the Web page -->
<meta charset="UTF-8" />
<!-- gives extra data to site even emojis , encoded using utf-8 coding system-->
<title>Prashant's Personal Site</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<table cellspacing="10">
<td>
<img src="prashant.png" alt="Prashant's Profile Picture" height="150" />
</td>
<td>
<h1>Prashant Singla</h1>
<p>
<a href="https://www.linkedin.com/in/prashant-singla-4556a6203/"
>Linkedin Profile</a
>
</p>
<p>
<strong>Student</strong> , <em>Delhi Technological Univarsity</em>
</p>
<p>
I am an Android and Web Developer. I like drving cars and watching
sciFi shows.
</p>
</td>
</table>
<hr>
<h3>Education</h3>
<ul>
<li>
Primary Education ( upto Class 12th)
<ul>
<li>Hindu Vidya Peeth, <em>Sonepat(HR)</em></li>
<li>
Goodley Public School, <em>Delhi</em>
<ul>
<li>Class 10th: 91.4 %</li>
<li>Class 12th: 95.2 %</li>
</ul>
</li>
</ul>
</li>
<li>
Under Graduate degree
<ul>
<li>
<a href="http://www.dtu.ac.in/">Delhi Technological University</a>,
<em>Delhi</em><br />Course: B.Tech, COE
</li>
</ul>
</li>
</ul>
<hr />
<h3>Skills</h3>
<table cellspacing="10">
<tr>
<td>
<table>
<tr>
<td>c++</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>c</td>
<td>⭐⭐⭐</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td>html</td>
<td>⭐</td>
</tr>
<tr>
<td>Js</td>
<td>⭐</td>
</tr>
</table>
</td>
</tr>
</table>
<hr />
<h3><a href="hobbies.html">My Hobbies</a></h3>
<h3><a href="contactMe.html">Contact Me</a></h3>
</body>
</html>
<!-- name="decription" used by search engine to know what website is about -->