-
Notifications
You must be signed in to change notification settings - Fork 330
/
Copy pathnavindu.html
71 lines (65 loc) · 2.07 KB
/
navindu.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
<!DOCTYPE html>
<html>
<head>
<link href="style/style.css" type="text/css" rel="stylesheet" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Navindu Amarakooon</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background: #ffffff;
font-family: 'Arial';
text-align: center;
}
.container {
max-width: 900px;
width: 100%;
margin: auto;
margin-top: 100px;
}
.hello-title {
color: #111;
font-size: 300%;
}
img {
margin: 5px;
}
</style>
</head>
<body>
<div class="container">
<span class="hello-title">Hello, I'm Navindu</span><br><br>
<h5>Get Connected</h5>
<div class="social-media">
<a href="https://instagram.com/notnav.jpg" target="_blank">
<img src="https://freeiconshop.com/wp-content/uploads/edd/instagram-new-outline.png" width="30px">
</a>
<a href="https://twitter.com/notNav_txt" target="_blank">
<img src="https://image.flaticon.com/icons/svg/59/59046.svg" width="30px">
</a>
<a href="https://github.com/notnavpy" target="_blank">
<img src="https://image.flaticon.com/icons/svg/25/25231.svg" width="30px">
</a>
</div>
</div>
<div>
<br /><br /><center><a id="back_to_home" href="home.html">Go back to home</a></center>
<footer>
<nav>
<ul>
<li style="
list-style-type: none;
top: 90%;
right: 90%;
position: absolute;">
<a href="./home.html" style="
text-decoration: none;
color: inherit;">Home</a>
</li>
</ul>
</nav>
</footer>
</div>
</body>
</html>