-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (43 loc) · 1.54 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
<!DOCTYPE html>
<!-- Photo below on this page was taken by Dominic Simpson -->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Comment Box</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="page">
<!-- Header Section -->
<header id="pageheader">
<a href="#mainsectioncontainer" class="skiplink">Skip to main content</a>
</header>
<!-- End of Header Section -->
<!-- Main Homepage Section -->
<div id="mainsectioncontainer">
<section id="homepagemainsection" role="main">
<div>
<h1>Welcome</h1>
</div>
<form>
<label for="name">Name:</label><br>
<input type="text" required id="userName" name="name" placeholder="Enter your full name here" /><br>
<label for="email">Email:</label><br>
<input type="email" required id="email" name="email" placeholder="Enter your email address" required/><br>
<label for="contactform">Comments:</label><br>
<div class="container">
<textarea class="contactformtext" id="contactform" name="contactform" placeholder="Enter text here" required></textarea><br>
<div>Number of characters left: <span class="counter">140</span>/140</div>
<div class="warning"></div>
</div>
<input type="button" id="myBtn" value="Submit"/>
</form>
<div class="output"></div>
</section>
</div>
<!-- End of Main Homepage Section -->
</div>
</body>
<script src="scripts/script.js"></script>
</html>