-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (108 loc) · 2.22 KB
/
Copy pathindex.html
File metadata and controls
114 lines (108 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title> Rohan's Personal Website</title>
</head>
<body>
<table cellspacing="10">
<tr>
<td>
<img src= "SELF_PIC.jpeg" width="100">
</td>
<td>
<h1> Buddhi Rohan Sai</h1>
<p>
<em>Student at VIT University, Vellore</em>
</p>
<p>
Hey all, this is <strong>Rohan</strong>. Welcome to my website!
</p>
<p>
This is just an experimental website which we are going to see develop over time.
Hopefully at the end of this course we can make this site look damn good!
To contact me<a href = "contact-me-form.html"> click here </a>
</p>
</td>
</tr>
</table>
<hr size=3 color='red' />
<h2>Subjects taken up</h2>
<ul type="disc">
<li>
Programnme Core courses
<ul type=circle>
<li>
Chemistry
</li>
<li>
Aptitude
</li>
</ul>
</li>
<li>
University Core courses
<ul type='circle'>
<li>
Chemistry
</li>
<li>
OOPS
</li>
<li>
Statistics
</li>
</ul>
</li>
</ul>
<hr>
<h3>Skills</h3>
<table cellspacing="10">
<tr>
<td>
<table>
<tr>
<td>
Python
</td>
<td>
★★★
</td>
</tr>
<tr>
<td>
C
</td>
<td>
★★★★
</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td>
Painting
</td>
<td>
★★★
</td>
</tr>
<tr>
<td>
Photography
</td>
<td>
★★★
</td>
</tr>
</table>
</td>
</tr>
</table>
<hr />
<h3> This is my favourite image</h3>
<img src="https://vignette.wikia.nocookie.net/gameofthrones/images/b/be/HBO_drogon_and_Jon.jpg/revision/latest?cb=20170814034408" width=1000 alt="Drogon looking at Jon Snow" />
</body>
</html>