-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewpage.html
39 lines (38 loc) · 846 Bytes
/
newpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>New Extension</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<style>
*{
padding: 0;
margin: 0;
}
.main{
background: url('https://source.unsplash.com/random');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
height: 100vh;
font-size: 40px;
}
.main h1, p{
color:white;
padding: 100px 0;
text-align: center;
font-weight: bold;
}
p{
padding: 20px;
background-color: rgba(0,0,0,0.5);
}
</style>
<body>
<div class="main">
<h1>Hello World, It's me!!!</h1>
<p>Extension created by Mayank Valechha! <i class="fa fa-github" aria-hidden="true"> / MayankValechha</i></p>
</div>
</body>
</html>