-
Notifications
You must be signed in to change notification settings - Fork 0
/
block.html
87 lines (74 loc) · 2.1 KB
/
block.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>BLOCK LAYOUT</title>
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/block.css">
</head>
<body>
<header class="container">
<span>BLOCK</span>
<div></div>
<div>
SOC
</div>
<nav>
NAV
</nav>
</header>
<section class="hero container">
HERO
</section>
<div class="content container">
<main>
<section class="testimonials clone">
<span>
TESTIMONIALS
</span>
<div>
<div class="col-6"></div>
<div class="col-6"></div>
</div>
</section>
<section class="services">
<span>
SERVICES
</span>
<div>
<div class="col-4"></div>
<div class="col-4"></div>
<div class="col-4"></div>
</div>
</section>
<section class="freelance">
<span>
FREELANCE
</span>
</section>
<section class="testimonials">
<span>
TESTIMONIALS
</span>
<div>
<div class="col-6"></div>
<div class="col-6"></div>
</div>
</section>
<section class="freelance clone">
<span>
FREELANCE
</span>
</section>
</main>
<aside>
ADS
</aside>
</div>
<footer class="container">
FOOTER
</footer>
</body>
</html>