-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
69 lines (56 loc) · 2.58 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
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi"/>
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- lama CSS -->
<link rel="stylesheet" type="text/css" href="./css/lama.css" />
<!-- Font-Family CSS -->
<link rel='stylesheet' type='text/css' href='./css/font-family.css' />
<title>Contact - Build with lama.js</title>
</head>
<body>
<ul id="lama-menu">
<li class="lama-item"><a href="index.html">Home</a></li>
<li class="lama-item"><a href="image.html">Images</a></li>
<li class="lama-item"><a href="listing.html">Shopping</a></li>
<li class="lama-item"><a href="notify.html">Notifications</a></li>
<li class="lama-item"><a href="contact.html">Contact</a></li>
<li class="lama-item"><a href="about.html">About</a></li>
</ul>
<div id="container">
<div class="container">
<form action="#">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="country">Country</label>
<select id="country" name="country">
<option value="india">India</option>
<option value="africa">Africa</option>
<option value="australia">Australia</option>
<option value="canada">Canada</option>
<option value="china">China</option>
<option value="france">France</option>
<option value="japan">Japan</option>
<option value="russia">Russia</option>
<option value="usa">USA</option>
<option value="uk">UK</option>
</select>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</div>
<script src="./js/lama.js" type="text/javascript"></script>
<script src="./js/index.js" type="text/javascript"></script>
<script src="./js/alerts_.js" type="text/javascript"></script>
</body>
</html>