-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact1.html
41 lines (35 loc) · 1.11 KB
/
contact1.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
<!DOCTYPE html>
<html>
<head>
<title>K-Rod Technology</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/form2.js"></script>
</head>
<body>
<div class="wrap">
<header class="main-header">
<img class="rotate clearfix resizelogo" src="img/K-Rod-01.png" alt="logo" align=left>
<div class="container">
<h1 >K-Rod Technology</h1>
<ul class="main-nav containerflex">
<li><a href="index.html">Home</a></li>
<li><a href="#">Forensics</a></li>
<li><a href="#">Cyber-security</a></li>
<li><a href="#">Compliance</a></li>
<li><a href="contact1.html">Contact</a></li>
<li><a href="contact.html">About</a></li>
</ul>
</div>
</header>
<div id="main">
<h1>K-Rod Contact Form</h1>
<form action="" onsubmit="validate()">
<input type="text"id="phone-number" placeholder="phone number"/> <br>
<input type="text" id="postal-code" placeholder="postal code" /><br>
<input type="submit" />
</form>
</div>
</body>
</html>