-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst.html
72 lines (72 loc) · 2.59 KB
/
first.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
<!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">
<title>Tushar Nasery</title>
<link rel="icon" type="image/jpg" href="#">
<link href="main.css" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<style type=text/css>
body {
height: 50px;
margin-top: 80px;
padding: 30px;
padding-top: 75px;
background-size: cover;
font-family: sans-serif;
}
header {
background-color: black;
position: fixed;
left: 0;
right: 0;
top: 0;
height: 50px;
display: flex;
align-items: center;
box-shadow: 0 0 25px 0 black;
}
header * {
display: inline;
}
header li {
margin: 50px;
}
header li a {
color: white;
font-size: large;
text-decoration: none;
}
</style>
</head>
<body class="h-14 bg-gradient-to-r from-cyan-200 to-blue-300 selection:bg-blue-100">
<header>
<nav>
<ul class="ml-7">
<li class="hover:underline"><a href="#">Home</a></li>
<li class="hover:underline"><a href="#">About Me</a></li>
<li class="hover:underline"><a href="#">Contact</a></li>
</ul>
</nav>
<br>
</header>
<ul class="marker:text-sky-400 box-content h-auto w-1/2 my-5 text-center text-2xl p-4 border-4 rounded-lg border-white bg-white">
<lh class="text-3xl"><h2><strong>Tushar Nasery</strong></h2></lh>
<br>
<li>point 1</li>
<li>point 2</li>
<li>point 3</li>
</ul>
<footer class="bg-black text-white align-bottom">
<ul class="ml-7 text-xs font-extralight leading-5 w-full m-0">
<lh>Socials:</lh>
<li class="hover:underline"><a href="https://www.instagram.com/_tusharnasery/" target="_blank" rel="noreferrer noopener">Instagram</a></li>
<li class="hover:underline"><a href="https://www.linkedin.com/in/tushar-nasery/" target="_blank" rel="noreferrer noopener">LinkedIn</a></li>
<li class="hover:underline"><a href="https://twitter.com/tusharnasery85" target="_blank" rel="noreferrer noopener">Twitter</a></li>
<li class="hover:underline"><a href="https://github.com/tusharn85" target="_blank" rel="noreferrer noopener">GitHub</a></li>
</ul>
</footer>
</body>
</html>