-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsol5.html
More file actions
138 lines (125 loc) · 3.94 KB
/
sol5.html
File metadata and controls
138 lines (125 loc) · 3.94 KB
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
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Mulish&display=swap" rel="stylesheet">
<title>Solution 5</title>
<style>
* {
margin: 0;
padding: 0;
}
header nav ul li {
display: inline;
padding: 0vw 2vw;
font-size: 5vh;
}
header {
background-color: rgb(178, 166, 76);
width: 100vw;
height: 5vh;
padding: 20px;
position: sticky;
top: 0;
z-index: 3;
}
.content {
background-color: rgb(248, 248, 232);
min-height: 2000px;
font-size: 30px;
width: 100vw;
}
.heading {
text-align: center;
font-size: 9vh;
font-family: 'Mulish', sans-serif;
padding: 2vh 0;
}
.content ul li {
list-style: circle;
font-family: 'Mulish', sans-serif;
font-size: 27px;
}
.content ul {
padding: 32px 50px;
}
.subheading {
padding: 7px 4vw;
font-size: 6vh;
font-family:Arial, Helvetica, sans-serif;
}
.dabba1 {
width: 150px;
height: 70px;
font-size: 26px;
border-color: rgb(4, 0, 0);
border-style: solid none solid none;
border-radius: 30px;
text-align: center;
position: fixed;
padding-top: 10px;
right: 12px;
bottom: 14px;
background-color: rgb(178, 166, 76);
}
.dabba1 a {
font-family: 'Mulish', sans-serif;
text-decoration: none;
color: rgb(255, 255, 255);
}
.image {
background-image: url(https://thumbs.dreamstime.com/b/young-pretty-programmer-wearing-head-phone-looking-to-screen-confident-smile-wearing-headphone-looking-to-screen-125783649.jpg);
z-index: 2;
width: 450px;
height: 350px;
background-repeat: no-repeat;
background-size: cover;
margin: auto;
position: absolute;
right: 32px;
top: 240px;
border-color: rgb(2, 52, 2);
border-width: 3px;
border-style: solid none solid none;
border-radius: 40px;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li>Contact</li>
<li>Ask</li>
<li>Blog</li>
<li>About Us</li>
</ul>
</nav>
</header>
<div class="content">
<div class="heading">
Programmator Academy
</div>
<div class="subheading">
Key features of our academy.
</div>
<ul>
<li>"Master the art of full stack development and take your coding skills to new <br> heights!"</li>
<li>"Join our online course and become a full stack development ninja!"</li>
<li>"Ready to take your coding career to the next level? Enroll in our full stack <br> development course today!"
</li>
<li>"Unleash your coding potential with our comprehensive full stack development <br> online course."</li>
<li>"Transform yourself into a full stack developer and unlock limitless coding <br> possibilities!"</li>
</ul>
<div class="image"></div>
</div>
<div class="dabba1">
<a href="https://github.com/anantluthra" target="_blank">Contact<br>Us</a>
</div
</div>
</body>
</html>