-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (75 loc) · 3.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Register Here!</title>
<link rel="stylesheet" href="main.css" />
<link
href="https://fonts.googleapis.com/css?family=Bubblegum+Sans|Nova+Mono|Roboto+Condensed"
rel="stylesheet"
/>
</head>
<body>
<h1><small><a href="https://www.100daysofcode.com/">#100DaysofCode</a> Day #1 Challenge:</small> Registration Forms</h1>
<div class="content">
<section>
<div class="register-wrapper">
<div class="register-block">
<h3 class="register-title">Create an account</h3>
<p>
Quickly & easily create an account using the form below.
</p>
<form action="">
<input type="email" placeholder="Enter your email" />
<input type="password" placeholder="Enter your password" />
<input type="submit" value="Create my account" />
</form>
</div>
</div>
</section>
</div>
<div class="content">
<section>
<div class="register-wrapper-tech">
<div class="register-block-tech">
<h3 style="text-align: center;" class="register-title-tech">Log In</h3>
<p style="text-align: center;">
Use the form below to gain access to your account.
</p>
<form action="">
<input type="email" placeholder="Enter your email" />
<input type="password" placeholder="Enter your password" />
<input type="submit" value="Submit" />
</form>
</div>
</div>
</section>
</div>
<section>
<div class="register-wrapper-final">
<div class="register-block-final">
<h3 style="text-align: center;" class="register-title-final">Log In</h3>
<p style="text-align: center;">
Use the form below to gain access to your account.
</p>
<form action="">
<input type="email" placeholder="Enter your email" />
<input type="password" placeholder="Enter your password" />
<input type="submit" value="Create my account" />
</form>
</div>
</div>
</section>
</div>
<div class="info">
<h2>Information</h2>
<h3>About this project</h3>
<p>
I made these registraion forms after watching <a href="http://codecollege.ca">Code 30 things in 30 days with CSS3</a> made by <a href="http://bradhussey.ca/">Brad Hussey</a> ©2018 Brightside Studios Inc. The top registration form I created by following along to the <a href="https://www.youtube.com/watch?v=ncM5Ldt5Trs&list=PLWKjhJtqVAbl1AfjiGyYxwpdAPi5v-1OU&index=4&t=880s">4th video in the series</a>. I plan to embark on the <a href="https://twitter.com/hashtag/100daysofcode?lang=en">#100DaysofCode</a> challenge. This project was my day 1. You can follow along with my coding journey on my <a href="https://twitter.com/kdarling93">Twitter</a>, <a href="https://www.instagram.com/darling_kirsten/">Instagram</a>, or <a href="https://github.com/KirstenDarling">Github</a>.
</p>
</div>
<footer>
</footer>
</body>
</html>