-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (67 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Daniel's Homepage</title>
</head>
<body>
<table cellspacing="10">
<tr>
<td><img style="border-radius: 50%;" src="Profile picture.png" alt="Daniel's profile picture">
</td>
<td>
<h1>Daniel Vaz</h1>
<p><em>CSE Major at <strong>Shiv Nadar University</strong>.</em></p>
<p>I am an aspiring Web Developer. I enjoy playing basketball and also play the guitar.</p>
</td>
</tr>
</table>
<hr>
<h3>Education</h3>
<ul>
<li><a href="http://www.christacademy.co.in/">Christ Academy</a></li>
<li>Swami Vivekanand Junior College</li>
<li><a href="http://www.snu.edu.in/">Shiv Nadar University</a></li>
</ul>
<hr>
<h3>Courses Taken</h3>
<table cellspacing="5">
<thead>
<tr>
<th>Year</th>
<th>Course</th>
</tr>
</thead>
<tbody>
<tr>
<td>2018</td>
<td>Android App Development </td>
</tr>
<tr>
<td>2019</td>
<td>Web Development Bootcamp</td>
</tr>
</tbody>
</table>
<hr>
<h3>Skills</h3>
<table cellspacing="5">
<tr>
<td>Java</td>
<td>⭐⭐⭐</td>
<td>HTML</td>
<td>⭐⭐</td>
</tr>
<tr>
<td>C</td>
<td>⭐⭐⭐</td>
<td>CSS</td>
<td>⭐</td>
</tr>
</table>
<hr>
<a href="songs.html">Songs I'm Working On</a>
<br>
<a href="contact.html">Contact Me</a>
</body>
</html>