-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
140 lines (138 loc) · 4.89 KB
/
contact.html
File metadata and controls
140 lines (138 loc) · 4.89 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Page</title>
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="assets/css/nivo-slider.css" type="text/css" media="screen" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="headersection template ">
<div class="logo">
<a href="#"><img src="assets/img/logo.jpg" alt="logo"/></a>
<h3>Website Title</h3>
<p>Website Description</p>
</div>
<div class="social">
<a href="#"><img src="assets/img/social/facebook.png" alt="facebook"/></a>
<a href="#"><img src="assets/img/social/twitter.png" alt="twitter"/></a>
<a href="#"><img src="assets/img/social/linkedin.png" alt="linkedin"/></a>
<a href="#"><img src="assets/img/social/instagram.png" alt="instagram"/></a>
</div>
</div>
<div class="navsection template">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a id="active" href="contact.html">Contact</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="dropdown.html">Dropdown</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="404.html">Other</a></li>
</ul>
</div>
<div class="slider_section template">
<div id="slider">
<a href="#"><img src="assets/img/slideshow/01.jpg" alt="nature 1" title="First Slide." /></a>
<a href="#"><img src="assets/img/slideshow/02.jpg" alt="nature 2" title="Second Slide." /></a>
<a href="#"><img src="assets/img/slideshow/03.jpg" alt="nature 3" title="Third Slide." /></a>
<a href="#"><img src="assets/img/slideshow/04.jpg" alt="nature 4" title="Fourth Slide." /></a>
</div>
</div>
<div class="contentsection template clear">
<div class="maincontent">
<div class="contact">
<h4>Contact Us.</h4>
<form action="index.php" method="get">
<fieldset>
<legend>Personal Information:</legend>
<table>
<tr>
<td>
<p>Your First Name:</p>
</td>
<td>
<input type="text" name="First Name" placeholder="Enter Your First Name" required>
</td>
</tr>
<tr>
<td>
<p>Your Last Name:</p>
</td>
<td>
<input type="text" name="Last Name" placeholder="Enter Your Last Name" required>
</td>
</tr>
<tr>
<td>
<p>Your Email Address:</p>
</td>
<td>
<input type="email" name="email" placeholder="Enter Email Address" required>
</td>
</tr>
<tr>
<td>
<p>Your Message:</p>
</td>
<td>
<textarea name="Address" id="" cols="30" rows="10"></textarea>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" name="submit" value="submit">
</td>
</tr>
</table>
</fieldset>
</form>
</div>
</div>
<div class="sidebar">
<div class="samesidebar">
<h2>Latest Article</h2>
<ul class="latestArticle">
<li><a href="#">Our Latest Article One</a></li>
<li><a href="#">Our Latest Article Two</a></li>
<li><a href="#">Our Latest Article Three</a></li>
<li><a href="#">Our Latest Article Four</a></li>
<li><a href="#">Our Latest Article Five</a></li>
<li><a href="#">Our Latest Article Six</a></li>
<li><a href="#">Our Latest Article Seven</a></li>
</ul>
</div><div class="samesidebar">
<h2>Sidebar Heading</h2>
<p>Some text will be go here. Some text will be go here. Some text will be go here. Some text will be go here. Some text will be go here.</p>
<p>Some text will be go here. Some text will be go here. Some text will be go here. Some text will be go here. Some text will be go here.</p>
</div><div class="samesidebar">
<h2>Sidebar Heading</h2>
<p>Some text will be go here. Some text will be go here. Some text will be go here. Some text will be go here. Some text will be go here.</p>
<p>Some text will be go here. Some text will be go here. Some text will be go here. Some text will be go here. Some text will be go here.</p>
</div>
</div>
</div>
<!--<div style="clear:both;"></div>-->
<div class="footersection template">
<div class="footermenu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Other</a></li>
</ul>
</div>
<p>copyright:©SA.Foundation All Right Resrved.2019</p>
</div>
<!-- All javascript code goes here.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
-->
<script src="assets/js/jquery.min.js" type="text/javascript"></script>
<script src="assets/js/jquery.nivo.slider.js" type="text/javascript"></script>
<script src="assets/js/custom.js" type="text/javascript"></script>
<script src="assets/js/scrolltotop.js" type="text/javascript"></script>
</body>
</html>