-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (47 loc) · 1.19 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
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>__'s Website</title>
</head>
<body>
<h1>__'s Website</h1>
<p>Hosted on Amazon S3!</p>
<img src="https://avatars2.githubusercontent.com/u/11934626?s=280&v=4"
width="350"
height="350">
</body>
<!-- <header>
<h3> Mad Libs </h3>
</header>
<form action="YOUR URL/madlibs" method="post">
<div>
<label for="name">Name:</label>
<input type="text" id="name" name="name">
</div>
<div>
<label for="place">Place:</label>
<input type="text" id="place" name="place">
</div>
<div>
<label for="verb1">Verb 1:</label>
<input type="text" id="verb1" name="verb1">
</div>
<div>
<label for="noun">Noun:</label>
<input type="text" id="noun" name="noun">
</div>
<div>
<label for="verb2">Verb 2:</label>
<input type="text" id="verb2" name="verb2">
</div>
<div class="button">
<button type="submit" onclick="submittedFunc()">SUBMIT</button>
<p id="statustext"></p>
<script>
function submittedFunc() {
document.getElementById("statustext").innerHTML="Submitted";
document.getElementById("statustext").style.color="green";
}
</script>
</div>
</form> -->
</html>