-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcontact.html
More file actions
82 lines (69 loc) · 2.73 KB
/
Copy pathcontact.html
File metadata and controls
82 lines (69 loc) · 2.73 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>Codeland Web Accessibility Demo</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="/assets/9e0c7a90-ed22-465f-a689-be8dbe4e09d9_200x200.png"/>
<!-- google font -->
<link href="https://fonts.googleapis.com/css?family=Fascinate|Righteous|Sanchez&display=swap" rel="stylesheet">
<!-- https://github.com/necolas/normalize.css/ -->
<link href="styles/normalize-8.0.1.css" rel="stylesheet">
<link href="/styles/main.css" rel="stylesheet">
<script src="/js/jquery-3.4.1.min.js" type="text/javascript"></script>
<script src="/js/main.js" type="text/javascript"></script>
</head>
<body>
<!-- header -->
<div class="site-header">
<div class="logo-container">
<img class="site-logo" src="/assets/9e0c7a90-ed22-465f-a689-be8dbe4e09d9_200x200.png"/>
</div>
<div class="site-nav">
<a href="/">Home</a>
<a href="/contact.html">Contact</a>
</div>
</div>
<!-- page title -->
<h1 class="page-title">Contact Form</h1>
<!-- main content -->
<div class="content-wrapper">
<form class="form-contact">
<div class="label required">Name</div>
<input type="text" required/>
<div class="label required">Email</div>
<input type="email" required/>
<div class="label">Message</div>
<textarea required></textarea>
<input type="submit" value="Send" class="button"/>
</form>
</div>
<!-- footer -->
<div class="site-footer">
<div class="site-footer-container">
<div class="form-subscribe-wrapper">
<h1>Subscribe to our Newsletter</h1>
<form class="form-subscribe" name="subscribeDigest">
<div class="input-wrapper">
<input type="text" required/>
<div class="label">Name</div>
</div>
<div class="input-wrapper">
<input type="email" required/>
<div class="label required">Email</div>
</div>
<div class="input-wrapper">
<label class="label label-checkbox">Subscribe to digest newsletter</label>
<input type="checkbox" required>
</div>
<span class="button" tabindex="0">Subscribe</span>
<span class="success">Thanks for subscribing!</span>
<span class="error">Something went wrong, please resubmit.</span>
</form>
</div>
<p class="cta"><a href="https://github.com/KISS/web-accessibility-workshop/">Check out project code here</a></p>
<p class="copyright">© 2019 Luisa M. Morales</p>
</div>
</div>
</body>
</html>