-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.htm
More file actions
34 lines (29 loc) · 761 Bytes
/
contact.htm
File metadata and controls
34 lines (29 loc) · 761 Bytes
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
<!DOCTYPE html>
<head>
<script>
function validateForm() {
var x = document.forms["myForm"]["fname"].value;
if (x == null || x == "") {
alert("Name must be filled out");
return false;
}
}
</script>
<title>Contact Me</title>
<link rel="stylesheet" type="text/css" href="blog.css">
<meta charset="UTF-8">
</head>
<body>
<ul id="nav">
<li><a href="index.htm">HOME</a></li>
<li><a href="">RECIPES</a></li>
<li><a href="">HOMESTEADING</a></li>
<li><a href="">CODING SKILLZ</a></li>
<li><a href="contact.htm">CONTACT ME</a></li>
</ul>
<form name="myForm" action="demo_form.asp" onsubmit="return validateForm()" method="post">
Name: <input type="text" name="fname">
<input type="submit" value="Submit">
</form>
</body>
</html>