-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
57 lines (48 loc) · 1.48 KB
/
contact.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
51
52
53
54
55
56
57
<!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="contact.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 containerflex">
<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="#">Contact</a></li>
<li><a href="#">About</a></li>
</ul>
</div>
</header>
<div class="formflex">
<form class="formflex" name="contact" method="post">
<label>Name</label>
<input type="text" name="name" />
<label>Subject</label>
<input type="text" name="subject" />
<label>Phone Number</label>
<input type="text" name="phone" />
<label>Message</label>
<textarea name="message"></textarea>
<input type="submit" name="send" value="Send Message" />
</form>
</div><!--/contact-->
<hr>
<a href="mailto:[email protected]?subject=Contacting%20K-Rod&body=Type-message-here">Click here to use your own email client</a>
<hr>
<div><footer class="main-footer">
<p>©2019 K-Rod, LLC. All rights reserved.</p>
<a href="#top">Back to top »</a>
</footer>
</div>
</div><!--/.wrap-->
</body>
</html>