-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (111 loc) · 3.25 KB
/
index.html
File metadata and controls
119 lines (111 loc) · 3.25 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>
Hello World
</title>
<style media="screen">
body{
background-color:blue
}
</style>
</head>
<body>
<img src="wall.jpg" alt="wall" align="right">
<img src="wall.jpg" alt="wall" align="left">
<table cellspacing=20>
<tr>
<td>
<center>
<h1>Hi there how are you welcome to my first website</h1>
<h2>This is your host <strong><em>Ankit kanyal</em></strong> welcoming you on his personal site</h2>
</center>
<center>
</td>
</tr>
</table>
<br />
<!--This is a comment-->
<h4 align="right"> <a href="contact.html" target="_blank">contact me</a> </h4>
<!--<pre> A horizontal rule will now differentiate the content</pre> -->
<hr size="3" noshade />
<h3>Bio</h3>
<ul>
<li>High school graduate from <a href="https://earth.google.com/web/@28.9020365,79.9695719,203.80378844a,911.13729207d,35y,0h,45t,0r/data=ChYaFAoML2cvMXE1Ym1yNXZfGAIgASgCKAI" target="_blank">Alchemist academy </a></li>
<li>Senior Secondary from <a href="https://earth.google.com/web/@29.3657836,79.4677491,1537.01514149a,906.59883088d,35y,0h,45t,0r/data=ChcaFQoNL2cvMTFnNGc4OTk1ZhgCIAEoAigC" target="_blank">P.P.J Saraswati Vihar</a> </li>
<li>Pursing Btech from <a href="https://earth.google.com/web/@28.3645268,77.539859,193.835677a,916.3153052d,35y,0h,45t,0r/data=ChQaEgoKL20vMGdmZjlmehgCIAEoAigC" target="_blank">Galgotiyas University</a> </li>
</ul>
<h4>Want to know more about my university click <a href="https://www.galgotiasuniversity.edu.in/" target="-_blank">here</a> </h4>
<hr size="3" noshade>
<h3>Hobbies</h3>
<ul type="square">
<li><a href="Games.html"> Games</a></li>
<li><a href="Movies.html"> Movies</a></li>
<li><a href="Dancing"> Dancing</a></li>
<li><a href="Coding.html"> Coding</a></li>
</ul>
<hr size="3" noshade>
<h3>Work Experience</h3>
<table>
<thead>
<tr>
<th>Year</th>
<th>Work</th>
</tr>
</thead>
<tbody>
<tr>
<td>2017</td>
<td>First year at college</td>
</tr>
<tr>
<td>2018</td>
<td>Learning c,c++</td>
</tr>
<tr>
<td>2019</td>
<td>learning and applying web development</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
<hr size="3" noshade>
<h3>Skills</h3>
<table cellspacing=20>
<tr>
<th>Languages</th>
<th>Ratings</th>
<th>Co-skills</th>
<th>Ratings</th>
</tr>
<tr>
<td>C/C++</td>
<td>⭐⭐⭐⭐</td>
<td>gaming</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Python</td>
<td>⭐⭐⭐</td>
<td>Singing</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>Web Development</td>
<td>⭐⭐⭐</td>
<td>Dancing</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>App Development</td>
<td>⭐⭐⭐</td>
<td>Communication Skills</td>
<td>⭐⭐⭐⭐</td>
</tr>
</table>
<pre> <strong>Note-:</strong><em>All above Ratings are measured upto a score of 5</em></pre>
<hr size="3" noshade>
</body>
</html>