-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (74 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coming soon</title>
<link rel="shortcut icon" href="./favicon.png" type="image/png">
<!-- reset/init -->
<link rel="stylesheet" href="./css/variables.css">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/layout.css">
<!-- 3rd party css -->
<link rel="stylesheet" href="./css/font-awesome.min.css">
<!-- component -->
<link rel="stylesheet" href="./css/button.css">
<link rel="stylesheet" href="./css/clock.css">
<link rel="stylesheet" href="./css/form.css">
<link rel="stylesheet" href="./css/mouse.css">
<link rel="stylesheet" href="./css/progress-bar.css">
<link rel="stylesheet" href="./css/toast.css">
<!-- custom -->
<link rel="stylesheet" href="./css/custom.css">
</head>
<body>
<div class="container hero bg-main-color">
<div class="row-short">
<img src="./img/coming-soon-logo.png" alt="Logo">
<h1>Coming soon</h1>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Esse quisquam fugiat facilis asperiores, quo harum?</p>
<div class="clock"></div>
<form class="form">
<input type="email" placeholder="Email" required data-validation="email">
<input type="submit" value="Subscribe now!" class="btn">
</form>
<div class="mouse">
<div class="wheel"></div>
</div>
</div>
</div>
<main class="container">
<div class="row">
<div class="column left">
<h2>About startup</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Necessitatibus impedit temporibus labore, <a href="#">Matrox</a> veniam tenetur ea quaerat cumque dolor distinctio.</p>
</div>
<div class="column right">
<h2>Have any question?</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quia explicabo doloribus quisquam <a href="mailto:vardenis@pastelis.xyz">vardenis@pastelis.xyz</a> natus autem dolorem. Eaque, molestias assumenda.</p>
<form class="form">
<input type="text" placeholder="Name" data-validation="name">
<input type="email" placeholder="Email" data-validation="email">
<textarea maxlength="1000" placeholder="Message" data-validation="text"></textarea>
<input type="submit" value="Send message" class="btn">
</form>
</div>
</div>
</main>
<footer class="container bg-main-color">
<div class="row">
<a href="#" class="btn btn-secondary-color circle fa fa-angle-up"></a>
</div>
<div class="row-short">
<img src="./img/logo-footer.png" alt="matrox logo">
<div class="text-trio">
<div class="text">Copyright © 2020 <a href="#">Matrox</a></div>
<div class="text">All rights reserved</div>
<div class="text">Designed by <a href="#">TrendyTheme</a></div>
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias <a href="#">200+</a> quia consequuntur distinctio libero qui atque incidunt <a href="#">Matrox</a> saepe nemo.</p>
</div>
</footer>
<script src="./js/main.js" type="module"></script>
</body>
</html>