-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>myTree</title>
</head>
<body>
<!-- Profile photo to be centered on page in a circular shape-->
<div class="profileImageContainer">
<img
src="profile.JPG"
alt="Handsome developer dressed in a beautiful white shirt with a great smile"
class="profileImage"
/>
</div>
<!--A grey @ name-->
<div class="name">
<h3>@rajatagrawaldev</h3>
</div>
<!--4 Links bars stretched fully across the page-->
<div class="container">
<div>
<a href="https://github.com/agrawalrajat310">GitHub</a>
</div>
<div>
<a href="https://www.linkedin.com/in/rajatagrawal310/">LinkedIn</a>
</div>
<div>
<a href="https://twitter.com/RAJATAGRAWAL310">Twitter</a>
</div>
<div>
<a href="https://www.youtube.com/channel/UCSYjK7zjfZz1521fr4mD-ZA"
>Youtube</a
>
</div>
<div>
<a href="https://codepen.io/agrawalrajat310">CodePen</a>
</div>
</div>
</body>
</html>