-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
178 lines (173 loc) · 4.16 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<script defer data-domain="parvej2001.github.io/my-first-website" src="https://plausible.io/js/plausible.js"></script>
<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>PARVEJ STATIC WEBSITE</title>
<style>
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
.container {
height: 100vh;
width: 100%;
background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url(laptop.jpg);
background-position: center;
background-size: cover;
position: relative;
box-sizing: border-box;
padding-right: 5%;
padding-left: 3%;
}
.navbar {
width: 100%;
height: 15vh;
margin: auto;
display: flex;
align-items: center;
}
.logo {
width: 70px;
margin-top: 10px;
cursor: pointer;
}
h3 {
color: #fff;
text-transform: uppercase;
font-weight: 700;
font-size: 20px;
margin-top: 10px;
}
nav {
flex: 1;
padding-left: 480px;
}
nav ul li {
display: inline-block;
list-style: none;
margin: 0 15px;
}
nav ul li a {
text-decoration: none;
color: #fff;
font-size: 15px;
font-weight: 600;
text-transform: uppercase;
}
nav ul li a:hover {
color: #ffbd59;
}
.content {
width: 100%;
position: relative;
top: 45%;
transform: translateY(-50%);
text-align: center;
color: #fff;
}
.text {
font-size: 70px;
font-weight: 700;
text-transform: uppercase;
height: 100px;
display: flex;
text-align: left;
overflow: hidden;
justify-content: center;
align-items: center;
}
p {
font-size: 15px;
font-weight: 500;
line-height: 20px;
letter-spacing: .1em;
margin-top: 40px;
}
.btn {
background: linear-gradient(to right, transparent 50%, #ffbd59 50%);
background-size: 200% auto;
background-position: left;
margin-top: 70px;
margin-left: 50px;
padding: 15px 45px;
text-align: center;
border: 2px solid #ffbd59;
outline: none;
color: #fff;
font-weight: 700;
text-transform: uppercase;
font-size: 24px;
border-radius: 30px;
cursor: pointer;
box-shadow: 3px 8px 22px rgba(22,21,21,.15);
transition: background-position .5s;
}
.btn:hover {
background-position: right;
color: #1b1b1b;
}
.slider {
color: #ffbd59;
margin-left: 14px;
box-sizing: border-box;
animation: slider 6s linear infinite;
}
@keyframes slider {
0% {
margin-top: -320px;
}
5% {
margin-top: -160px;
}
30% {
margin-top: -160px;
}
35% {
margin-top: 0px;
}
65% {
margin-top: 0px;
}
70% {
margin-top: 160px;
}
100% {
margin-top: 160px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="navbar">
<img src="logo.png" class="logo">
<h3>PARVEJ SHAIKH</h3>
<nav>
<ul>
<li><a href="">Home</a></li>
<li><a href="">About</a></li>
<li><a href="">Blog</a></li>
<li><a href="">Contact Us</a></li>
</ul>
</nav>
</div>
<div class="content">
<div class="text">
Become a
<div class="slider">
<div>Programmer</div>
<div>Web Developer</div>
<div>App Developer</div>
</div>
</div>
<p>We're providing free content on our platform for future programmers.<br> If you want to become a good programmer then Join our community now & level up your skills with us
</p>
<button class="btn">Register Now</button>
</div>
</div>
</body>
</html>