forked from chanchalsinghla/Hacktoberfest_2022_SatwickSam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdd_your_code_for_hacktoberfest2022.html
69 lines (68 loc) · 2.08 KB
/
Add_your_code_for_hacktoberfest2022.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
<!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>Hacktoberfest 2022 - Add your code</title>
</head>
<body>
<div class="back">
<div class="head">HACKTOBERFEST 2022</div>
<div class="content">
<ul>
<!-----------------Paste your code here----------------->
<li>Satwick Sam</li>
<li>Renan Miranda</li>
<li>Atul Sarkar</li>
<li>Ansh Sahu</li>
<!------------------------------------------------------>
</ul>
</div>
</div>
<style>
*{
padding: 0;
margin: 0;
}
.back{
background-image: url("https://wallpaperaccess.com/full/1566582.jpg");
background-size: cover;
background-position: center;
height: 100vh;
width: 100%;
position: absolute;
}
.head{
top: 10%;
left: 50%;
font-size: 30px;
transform: translate(-50%, -50%);
position: absolute;
color: aqua;
text-shadow: 1px 1px 2px aquamarine;
background-image: linear-gradient(rgba(0, 0, 255, 0.303),rgb(0, 0, 255, 0.303));
padding: 10px;
}
.content{
margin-top: 20%;
left: 50%;
font-size: 25px;
transform: translate(-50%, -50%);
position: absolute;
color: #16F529;
width: auto;
height: auto;
text-transform: uppercase;
}
.content li{
margin-bottom: 10px;
padding: 10px;
background-image: linear-gradient(rgba(0, 255, 0, 0.5),rgb(0, 255, 0, 0.5));
border-radius: 10px;
list-style: none;
text-align: center;
}
</style>
</body>
</html>