-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
126 lines (110 loc) · 2.57 KB
/
about.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
html{
background:rgb(231, 231, 10)
}
.logo{
width: 100px;
cursor:pointer;
border-radius: 10px;
}
nav{
display: flex;
width: 84%;
margin: auto;
padding: 20px 0 0 0;
align-items:center;
justify-content: space-around;
}
nav ul li{
display: inline-block;
list-style: none;
margin: 10px 20px ;
}
nav ul li a{
text-decoration: none;
color: black;
font-weight: bold;
}
nav ul li a:hover{
color: rgb(28, 169, 28);
}
.about{
margin-left: 9%;
margin-right: 9%;
margin-top: 10%;
position: absolute;
}
.about h1{
font-size: 50px;
color:red;
margin-bottom: 50px;
position: relative;
animation: text 3s 1;
}
@keyframes text{
0%{
color: black;
margin-bottom: 30px;
}
30%{
letter-spacing: 25px;
margin-bottom: 100px;
}
50%{
letter-spacing: 50px;
}
85%{
letter-spacing: 8px;
}
}
span{
color: black;
}
.about p{
color: black;
line-height: 37px;
font-size: 30px;
letter-spacing: 2px;
}
.about hover{
cursor: pointer;
}
.about p:hover{
color: red;
}
</style>
<body>
<nav class="nav">
<img src="logo3.jpeg" alt="logo" class="logo">
<ul>
<li><a href ="index.html">HOME </a></li>
<li><a href ="about.html">ABOUT </a></li>
<li><a href ="skillset.html">SKILLS </a></li>
<li><a href ="experience.html">EXPERIENCE</a></li>
<li><a href ="contact.html"> CONTACT</a></li>
<li><a href="achievements.html"> ACHIEVEMENTS </a></li>
<li><a href="projects.html"> PROJECTS </a></li>
</ul>
</nav>
<div class="about">
<h1> ABOUT <span> MYSELF </span></h1>
<p>
A diligent and committed undergraduate <br>who views themselves as responsible and organized.
<br>An aspiring entry-level programmer eager to seize opportunities within the industry.
</div>
<div class="footer">
</div>
</body>
</html>