-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoon.html
71 lines (55 loc) · 2.36 KB
/
soon.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
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<!--Font from Google-->
<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=League+Spartan:wght@600&display=swap" rel="stylesheet">
<title>The Three of Us - Coming Soon!</title>
</head>
<body>
<header>
<!--image made by me on Canva-->
<img id="logo" src="Images/logo-text.png" alt="text saying the three of us" width="200" height="200">
<!-- Navigation bar -->
<nav class="nav">
<ul class="nav-links">
<li class="nav-page"><a href="index.html">Home</a></li>
<li class="nav-page"><a href="soon.html">About</a></li>
<li class="nav-page"><a href="profiles.html">Profiles</a></li>
<li class="nav-page"><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div class="flex-container">
<div class="flex-item"><hr class="line"></div>
<div class="flex-item1"><img src="Images/coming-soon.png" alt="a blue and green globe with the website name, the three of us around the top" width="200" height="200"></div>
<div class="flex-item"><hr class="line"></div>
</div>
<h1 id="semantic">Page under construction, please come back soon!</h1>
</main>
<!--Footer which will be the same on all pages, containing copywrite, social media links and a email sign up form -->
<footer>
<hr class="line">
<p class="sign-up"> Sign up today to keep up to date with the three of us!</p>
<div class="form">
<form>
<label for="fname">First Name</label>
<input type="text" id="fname">
<label for="email">Email address</label>
<input type="text" id="email">
<input type="submit" value="Submit">
</form>
</div>
<!--Social media icons which would link to social media pages-->
<div id="social">
<img src="Images/icon1.svg" alt="twitter logo">
<img src="Images/icon2.svg" alt="twitch logo">
<img src="Images/icon3.svg" alt="insta logo">
</div>
<p id="trademark">website made by woods91</p>
</footer>