-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (76 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="hi, im meg">
<title>💜 Meg's personal site</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td><img src="flower.jpg" alt="meg flower" width="300" height="200"></td>
<td><h1>Meghana Goru </h1>
<p><em>Student at PES university</em></p>
<p>I am passionate about computer science and I am interested in using technology to solve daily life problems.
Currently working on a startup which does that.</p>
</td>
</tr>
</table>
<hr>
<table cellspacing="20">
<thead>
<tr>
<th>Education</th>
<th>Year</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pineridge school</td>
<td>2004-2006</td>
</tr>
<tr>
<td>Cambridge Public school</td>
<td>2006-2008</td>
</tr>
<tr>
<td>Vibgyor High</td>
<td>2008-2019</td>
</tr>
<tr>
<td>Deens Academy</td>
<td>2019-2021</td>
</tr>
<tr>
<td>PES University</td>
<td>2021-2025</td>
</tr>
</tbody>
</table>
<hr>
<table cellspacing =10>
<thead>
<tr>
<th>Skills</th>
<th>Level</th>
</tr>
</thead>
<tr>
<td>Python</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>C</td>
<td>⭐⭐</td>
</tr>
<tr>
<td>Web development</td>
<td>⭐</td>
</tr>
</table>
<hr>
<a href="hobbies.html">Hobbies</a>
<br>
<a href="contact.html">Contact Me</a>
</body>
</html>