-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (54 loc) · 877 Bytes
/
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
<html>
<head>
<style>
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,900);
body {
font-family: 'Source Sans Pro', sans-serif;
}
header {
background:
linear-gradient(
rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)
),
url(http://localhost/back2.jpg);
background-size: cover;
height: 100vh;
}
.title {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
text-align: center;
}
h1 {
text-transform: uppercase;
margin: 0;
font-size: 3rem;
white-space: nowrap;
}
h2 {
font-size: 2rem;
}
p {
margin: 0;
font-size: 1.3rem;
}
main {
max-width: 500px;
margin: 20px auto;
}
</style>
</head>
<header>
<div class="title">
<h1>Welcome to </h1>
<h1>Network Operations Center</h1>
<h3>We are guardians of Infra</h3>
</div>
</header>
<main>
</main>
</html>