-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (100 loc) · 4.58 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Space+Grotesk:wght@300;400;600;700&display=swap" rel="stylesheet">
<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=Space+Mono:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<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=Open+Sans:wght@400;600;700;800&display=swap" rel="stylesheet">
<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=Open+Sans:wght@300&display=swap" rel="stylesheet">
<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=Overpass:wght@600&display=swap" rel="stylesheet">
<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=Overpass+Mono:wght@600;700&display=swap" rel="stylesheet">
<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=Overpass+Mono:wght@700&display=swap" rel="stylesheet">
<title>Company Landing Page</title>
</head>
<body>
<img src="images/r-architecture-2gDwlIim3Uw-unsplash.jpg" alt="Photo by R ARCHITECTURE on Unsplash">
<div class="container">
<div class="header">
<a href="" class="logo"></a>
<a href="" class="menubar mobile-only">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="nav desktop-only">
<ul>
<li><a href="" class="white">Home</a></li>
<li><a href="" class="white">About</a></li>
<li><a href="" class="white">Projects</a></li>
<li><a href="" class="white">Contact Us</a></li>
</ul>
</div>
</div>
<div class="hero">
<div class="main bold white larger">
Quality projects <br> for our trusted clients.
</div>
<div class="support white semibold large">
We'll help you turn your dream designs to reality.
</div>
<button class="extrabold green small mono">FREE CONSULTATION</button>
</div>
</div>
<div class="footer">
<div class="info-name">
<div class="info">
<p class="extrabold large mono">CONSTRUCTION NAME</p>
<p class="smaller">Construction Address,<br>San Juan, Metro Manila, 1500</p>
<p class="light smallest">Contact No. 0912-345-6789 | 1234-5678</p>
</div>
<div class="info-terms">
<p class="extrabold white smaller">Terms of Service </p>
<p class="extrabold white smaller">Privacy Policy</p>
</div>
</div>
<div class="line"></div>
<div class="container1">
<div class="container2">
<div class="info-social">
<p class="semibold small mono">VISIT US</p>
<p class="white smaller">Facebook</p>
<p class="white smaller">Twitter</p>
<p class="white smaller">Instagram</p>
</div>
<div class="info-sitemap">
<p class="semibold small mono">SITEMAP</p>
<p class="white smaller">Home</p>
<p class="white smaller">About Us</p>
<p class="white smaller">Our Projects</p>
<p class="white smaller">Services Offered</p>
<p class="white smaller">Contact Us</p>
</div>
</div>
<div class="subscription">
<p class="semibold small white mono">SUBSCRIBE TO OUR NEWSLETTER</p>
<form action="#" method="post">
<input type="email" name="email" id="email" placeholder="Email Address" class="light smallest">
<button type="submit">SIGN UP</button>
</form>
</div>
</div>
</div>
</body>
</html>