-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (93 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>my resume</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<table cellspacing="20">
<tr>
<td> <a href=""><img width="200" src="images/edited.png" alt="YASH SAMAR"></a>
</td>
<td>
<H1>YASH SAMAR</H1>
<p><em>currently student and future Blockchain Developer🌐</em></p>
<p>learning Web Development❤️ </p>
<nav>
<ul>
<li><a href="#education">education</a></li>
<li><a href="#hobbies">hobbies</a></li>
<li><a href="#skills">skills</a></li>
<li><a href="#contactme">contactme</a></li>
</ul>
</nav>
</td>
</tr>
</table>
<hr>
</header>
<!--header ends-->
<main>
<section id="education">
<h2 class="middle">Education</h2>
<table border="COLLAPSE" STYLE="WIDTH:80%" cellspacing="5">
<tr style="background-color: rgb(195, 195, 195);">
<th>course</th>
<th>institute</th>
<th>year</th>
<th>result</th>
</tr>
<tr>
<td>btech.</td>
<td> <a href="https://jecrcuniversity.edu.in/" target="_blank"> jecrc university</a> </td>
<td>2026</td>
<td>awaited</td>
</tr>
<tr >
<td>12<sup>th</sup></td>
<td>st pauls school</td>
<td>2022</td>
<td>pass</td>
</tr>
</table>
</section>
<br>
<hr>
<section id="hobbies">
<h2 class="middle">Hobbies</h2>
<ul>
<li>playing ukulele</li>
<li>watching movies and listening songs</li>
</ul>
</section>
<br>
<hr>
<section id="skills">
<h2 class="middle">Skills</h2>
<table cellspacing="10">
<tr>
<td>web developer</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>c++</td>
<td>⭐</td>
</tr>
</table>
</section>
<hr>
</main>
<!--main ends-->
<footer id="contactme">
<a href="contactme.html" target="_blank">
<h3>Connect with me</h3>
</a>
<br>
<a href="#">back to top</a>
</footer>
<!-- <a href="aboutus.html" target="_blank"> <p>about us</p></a>-->
<!--footer ends-->
</body>
</html>