-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (61 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<section id="sidebar-section">
<div id="sidebar">
<img id="background-image" src="./src/background-image.jpg" alt="green leaves" width="500px" height="1000px">
<p id="img-attribute">Photo by <a
href="https://unsplash.com/@haliewestphoto?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Halie
West</a> on <a
href="https://unsplash.com/photos/green-leaf-plant-in-close-up-photography-25xggax4bSA?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Unsplash</a>
</p>
<div id="sidebar-logo"><img src="./src/odin-lined.png" alt="odin logo">ODIN</div>
</div>
</section>
<section id="hero-section">
<div id="hero-text">
<p>This is not a real online service! You know you need something like this in your life to help you realize
your deepest dreams. Sign up now to get started.</p>
<p>You know you want to.</p>
</div>
<div id="hero-form">
<div class="hero-input">
<label for="first-name">FIRST NAME</label><br>
<input type="text" name="first-name" id="first-name">
</div>
<div class="hero-input">
<label for="last-name">LAST NAME</label><br>
<input type="text" name="last-name" id="last-name">
</div>
<div class="hero-input">
<label for="email">EMAIL</label><br>
<input type="email" name="email" id="email">
</div>
<div class="hero-input">
<label for="phone-number">PHONE NUMBER</label><br>
<input type="tel" name="phone-number" id="phone-number">
</div>
<div class="hero-input">
<label for="password">PASSWORD</label><br>
<input type="password" name="password" id="password">
</div>
<div class="hero-input">
<label for="confirm-password">CONFIRM PASSWORD</label><br>
<input type="password" name="confirm-password" id="confirm-password">
</div>
</div>
<div id="hero-buttons">
<button type="button">Create Account</button>
<p>Already have an account? <a href="#"">Log in</a></p>
</div>
</section>
</main>
</body>
</html>