-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperiment5.html
75 lines (72 loc) · 1.62 KB
/
experiment5.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Personal Site</title>
<style>
body {
background-color: aquamarine;
}
hr {
border-style: none;
border-top-style: dotted;
border-color: grey;
width: 10%;
border-width: 5px;
height: 0;
}
h1 {
color: brown ;
font-family: 'Times New Roman', Times, serif;
}
img {
border-radius: 50%;
height: 200px;
width: auto;
}
.detail{
margin-left: 2em;
}
p{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
</style>
</head>
<body>
<table cellspacing="20">
<tr>
<td><img class="profile" src="image/IMG_20201031_183846 (2).jpg" alt="profile picture"></td>
<td><h1>Harsh kumar Chandrakar</h1>
<p>I am a Web Developer.</p>
<p>CSE undergrad Student</p></td>
</tr>
</table>
<hr>
<div class="detail">
<h3>MY Ideals</h3>
<ol>
<li><a href="https://en.wikipedia.org/wiki/Nikola_Tesla">Nikola Tesla</a> </li>
<li><a href="https://en.wikipedia.org/wiki/Richard_Feynman">Richard Feynman</a> </li>
<li><a href="https://en.wikipedia.org/wiki/Elon_Musk">Elon Musk</a></li>
</ol>
</div>
<hr>
<div class="detail">
<h3>Skills</h3>
<table cellspacing="10">
<tr>
<td>MERN Stack</td>
<td>⭐️⭐️⭐️⭐️</td>
</tr>
<tr>
<td>Django Development</td>
<td>⭐️⭐️⭐️</td>
</tr>
<tr>
<td>Photography</td>
<td>⭐️⭐️⭐️⭐️</td>
</tr>
</table>
</div>
</body>
</html>