-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (48 loc) · 1.48 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
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="favicon.png">
<title>Masthead Styles</title>
<!-- Google fonts -->
<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=Oswald:wght@700&display=swap" rel="stylesheet">
<!-- Normalize CSS -->
<link href="https://unpkg.com/[email protected]/modern-normalize.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<section>
<div class="container style-1">
<div class="text">OPEN MIND FOR A DIFFERENT VIEW</div>
</div>
</section>
<section>
<div class="container style-2">
<div class="text">
<span class="big">AND</span>
NOTHING ELSE MATTERS
</div>
</div>
</section>
<section>
<div class="container style-3">
<div class="bg-solid-1"></div>
<div class="bg-solid-2"></div>
<div class="text">FOREVER TRUSTING WHO WE ARE</div>
</div>
</section>
<section>
<div class="container style-4">
<div class="nested-bg">
<div class="text">
AND
<span class="big">NOTHING ELSE MATTERS</span>
</div>
</div>
</div>
</section>
</body>
</html>