-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (58 loc) · 2.42 KB
/
index.html
File metadata and controls
68 lines (58 loc) · 2.42 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Naturedes</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="assets/icon.png" type="image/x-icon">
</head>
<body>
<div class="display-content">
<img class="background" src="assets/background.png" alt="Icy mountains with blue skies" height="auto 100%">
<div class="banner">
<img class="logo" src="assets/logo.png" alt="Naturedes Logo">
<p class="logo-text">Naturedes</p>
</div>
</div>
<div class="text-content">
<p class="pre-text">Immerse yourself in the enchanting symphony of nature with our sightseeing ventures. Wander
through lush landscapes and panoramic vistas, where every step reveals a masterpiece crafted by the earth.
</p>
<p class="advert">You <em>know</em> you want to.</p>
<div class="form-content">
<p class="form-header">Let's do this!</p>
<form action="example.com/path" method="post">
<div>
<label for="first-name">FIRST NAME</label><br>
<input type="text" id="first-name">
</div>
<div>
<label for="last-name">LAST NAME</label><br>
<input type="text" id="last-name">
</div>
<div>
<label for="email">EMAIL ADDRESS</label><br>
<input type="email" id="email" name="email">
</div>
<div>
<label for="amount">PHONE NUMBER</label><br>
<input type="number" id="amount" name="amount">
</div>
<div>
<label for="password">PASSWORD</label><br>
<input type="password" id="password" name="password">
</div>
<div>
<label for="password-cnf">CONFIRM PASSWORD</label><br>
<input type="password" id="password-cnf" name="password">
</div>
</form>
</div>
<div class="footer">
<button class="register" type="submit">Create Account</button>
<p class="log-in-text">Already have an account? <a class="log-in-link" href="">Log in</a></p>
</div>
</div>
</body>
</html>