-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (97 loc) · 3.56 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
<!--
STRUCTURE => HTML
STYLISING => CSS
BEHAVIOUR => JAVASCRIPT
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dhruv's Personal Site</title>
</head>
<body>
<table cell spacing="20">
<tr>
<td><img src="witcher3-101-1024.ico" alt="Profile Picture" height="50%"></td>
<td><h1>Dhruv Kumar</h1>
<p>I love coding.</p></td>
</tr>
</table>
<div style="border: 1px solid black">Hello Everyone!!</div>
<p><em>Student at <strong><a href="http://www.dtu.ac.in/" download>Delhi Technological University</a></strong></em></p>
<p>Hi everyone, this is Dhruv Kumar, currently a student pursuing B.Tech in Computer Engineering at Delhi Technological University.<br>I did my schooling from
Faith Academy Sr Sec School and brought laurels to that school. I participated in various quizzes, programming competitions throughout my school life.<br>
Probably those were the best days.
</p>
<hr>
<h3><strong><u>Education</u></strong></h3>
<ul>
<li><a href="https://www.faithacademy.in/#">Faith Academy Senior Secondary School</a></li>
<li><a href="http://www.dtu.ac.in/">Delhi Technological University(DTU)</a></li>
</ul>
<h3><strong><u>Hobbies</u></strong></h3>
<ol>
<li>Reading</li>
<li>Playing Videogames</li>
<li><a href="https://www.healthline.com/nutrition/10-reasons-why-good-sleep-is-important">Sleeping 😅</a></li>
<li>Searching <a href="https://www.google.co.in/">Google</a></li>
</ol>
<strong><a href="contact.html">CONTACT ME FROM HERE.</a></strong>
<hr>
<br><strong><u>Family Members in my house: </u></strong><br><br>
<table border="1" bordercolor="red"> <!--WITHOUT BORDER NO BORDER WILL BE DISPLAYED IN DEFAULT-->
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Naresh Kumar</td>
<td>46</td>
</tr>
<tr>
<td>Rajeshwari</td>
<td>44</td>
</tr>
<tr>
<td>Dhruv Kumar</td>
<td>19</td>
</tr>
<tr>
<td>Diyansh Kumar</td>
<td>16</td>
</tr>
</tbody>
</table>
<hr>
<h3><font color="red"><u>Skills</u></font></h3>
<table border="1" cellspacing="10">
<tr>
<td>
<table cellspacing="10">
<tr>
<td>Web Development</td> <td>⭐</td>
</tr>
<tr>
<td>AI/ML</td> <td>⭐</td>
</tr>
</table>
<!--These things are confusing with html but can be easily be done with the help of css-->
</td>
<td>
<table cellspacing="10">
<tr>
<td>C++</td> <td>⭐⭐⭐</td>
</tr>
<tr>
<td>Quizzing</td> <td>⭐⭐⭐⭐⭐</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>