-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (96 loc) · 4.81 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!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">
<meta name="description" content="Commune waitlist landing page">
<meta name="keywords" content="HTML, CSS, SCSS, Vanilla Javascript">
<meta name="author" content="Jose Angel Rey">
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;700&display=swap" rel="stylesheet">
<!-- CSS styles -->
<link rel="stylesheet" href="./css/main.css">
<!-- Javascript -->
<script src="./js/app.js" defer></script>
<title>Commune waitlist landing page | Jose Angel Rey</title>
</head>
<body>
<div class="main-container">
<!-- Main header -->
<header class="main-header">
<img src="./Assets/Logo.svg" alt="Commune logo" class="main-header__logo">
<!-- Main header - Navbar-->
<nav class="main-header__navbar">
<button class="main-header__hamburger-btn">
<span></span>
<span></span>
<span></span>
</button>
<ul class="main-header__nav">
<li class="main-header__nav-item">
<a href="#" class="main-header__nav-link">Features</a>
</li>
<li class="main-header__nav-item">
<a href="#" class="main-header__nav-link">Affiliates</a>
</li>
<li class="main-header__nav-item">
<a href="#" class="main-header__nav-link">Pricing</a>
</li>
<li class="main-header__nav-item">
<a href="#" class="main-header__nav-link">Communities</a>
</li>
<li class="main-header__nav-item">
<a href="#" class="main-header__nav-link btn">Join Waitlist</a>
</li>
</ul>
</nav>
</header>
<!-- Main content -->
<main class="main-content">
<!-- Main section -->
<section class="main-content__section">
<!-- Main section - Title -->
<h1 class="main-content__section-title">Build a highly engaged community with no effort.</h1>
<!-- Main section - Description -->
<p class="main-content__section-description">
Commune offers the tools you need to buid a highly engaged community with little to no effort.
Simply your Commune workspace, and manage everything from members to content from one central
dashboard.
</p>
<!-- Main section - Advice -->
<p class="main-content__section-advice">
We are now allowing early-acces for users. <a href="#">Learn more.</a>
</p>
<!-- Email validation -->
<form action="./index.html" method="GET" class="main-content__form">
<label for="email">
<input type="text" name="email" id="email" placeholder="Enter your e-mail adress" id="email">
</label>
<span class="warning">Provide a valid email</span>
<button type="submit">Join Waitlist</button>
</form>
</section>
<!-- Illustration -->
<img src="./Assets/Illustration.png" alt="" class="main-content__illustration">
</main>
<!-- Sponsors -->
<aside class="sponsors">
<h2 class="sponsors__title">Used by these companies:</h2>
<img src="./Assets/Atlassian.svg" alt="Atlassian logo" class="sponsors__logo">
<img src="./Assets/Behance.svg" alt="Behance logo" class="sponsors__logo">
<img src="./Assets/Bing.svg" alt="Bing logo" class="sponsors__logo">
<img src="./Assets/Bitbucket.svg" alt="Bitbucket logo" class="sponsors__logo">
<img src="./Assets/Dropbox.svg" alt="Dropbox logo" class="sponsors__logo">
<img src="./Assets/Twitch.svg" alt="Twitch logo" class="sponsors__logo">
<img src="./Assets/Twitter.svg" alt="Twitter logo" class="sponsors__logo">
</aside>
<!-- Attribution footer -->
<footer class="attribution-footer">
<p>Challengue by <a href="https://www.codewell.cc/" target="_blank" rel="noreferrer noopener">Codewell</a></p>
<p>Developed by <a href="https://github.com/Jose-Angel-Rey" target="_blank" rel="noreferrer noopener">Jose Angel Rey</a></p>
</footer>
</div>
</body>
</html>