-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (42 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, html {
height: 100%;
margin: 0;
}
.bg {
background-image: url("images/backgr.jpg");
height: 100%;
background-position: center;
background-size: cover;
}
</style>
<style>
div.world {
text-align: center;
}
h1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 5rem;
color: white;
letter-spacing: 1.4rem;
text-transform: uppercase;
text-shadow: 0rem 0rem 1rem white;
}
</style>
</head>
<body>
<div class="bg">
<div class="world">
<h1>Hello World</h1>
<img src="images/world.gif">
<h1>by</h1>
<h1>FAISAL JAVED</h1>
</div>
</div>
</body>
</html>