-
-
Notifications
You must be signed in to change notification settings - Fork 188
/
join.html
80 lines (78 loc) · 2.1 KB
/
join.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
<!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">
<link href="styles.css" rel="stylesheet">
<link href="join.css" rel="stylesheet">
<title>Soundwave - Join</title>
</head>
<body class="full-height-grow">
<div class="container full-height-grow">
<header class="main-header">
<a href="/" class="brand-logo">
<img src="images/logo.png">
<div class="brand-logo-name">Soundwave</div>
</a>
<nav class="main-nav">
<ul>
<li><a href="discover.html">Discover</a></li>
<li><a href="join.html">Join</a></li>
</ul>
</nav>
</header>
<section class="join-main-section">
<h1 class="join-text">
Join the
<span class="accent-text">fun.</span>
</h1>
<form class="join-form">
<div class="input-group">
<label>Name:</label>
<input type="text">
</div>
<div class="input-group">
<label>Email:</label>
<input type="email">
</div>
<div class="input-group">
<label>Password:</label>
<input type="password">
</div>
<div class="input-group">
<button type="submit" class="btn">Join Now</button>
</div>
</form>
</section>
</div>
<div class="join-page-circle-1"></div>
<div class="join-page-circle-2"></div>
<footer class="main-footer">
<div class="container">
<nav class="footer-nav">
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<nav class="footer-nav">
<ul>
<li>
<a href="#" class="social-link">
<img src="images/twitter.svg">
Twitter
</a>
</li>
<li>
<a href="#" class="social-link">
<img src="images/facebook.svg">
Facebook
</a>
</li>
</ul>
</nav>
</div>
</footer>
</body>
</html>