-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcontact.html
60 lines (60 loc) · 3.09 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
<!DOCTYPE html>
<html lang="en" class="nojs">
<head>
<title>International Society for Universal Dialogue</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,shrink-to-fit=no" />
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Bowlby+One" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script defer src="js/site.js"></script>
</head>
<body>
<header>
<div class="container">
<img class="logo" src="images/isud.jpeg" alt="front logo"/>
<nav>
<ol>
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</ol>
</nav>
</div>
</header>
<h1>Contact</h1>
<form id="form" method="get" action="#null" autocomplete="on">
<div class="column">
<p> Send a message to us by filling the form below.</p>
<label>Name: <input type="text" name="text_field" placeholder="full name" ></label>
<div>
<label>Age: <input type="date" name="number_field"></label>
</div>
<label>Email Address: <input type="email" name="email_field" placeholder="email here"></label>
<div>
<label>Male: <input type="radio" name="radio_field" value="r"></label>
<label>Female: <input type="radio" name="radio_field" value="g" checked="checked"></label>
</div>
<label for="password">Password:
<input type="password" id="password" name="password" placeholder=" must be between 6 to 20 charcters"></label>
<div id="error"></div>
<label for="our_textarea">Message:<textarea cols="60" rows="5" name="textarea_field" placeholder="your message should be no more then 50 characters" id="our_textarea"></textarea></label>
<input type="submit" value="Submit">
</div>
</form>
<div class="row">
<div class="location">
<ol><i class="fa fa-map-marker" style="width:30px"></i> Chicago, US </ol>
<ol><i class="fa fa-phone" style="width:30px"></i> 888-888-888 </ol>
<ol><i class="fa fa-envelope" style="width:30px"> </i> testing@gmail.com </ol>
</div>
</div>
<footer class="foot">
<a href="https://www.facebook.com"><i class="fa fa-facebook-official w3-hover-opacity"></i></a>
<a href="https://www.instagram.com/ISUD/"><i class="fa fa-instagram w3-hover-opacity"></i></a>
<a href="https://twitter.com/ISUD"><i class="fa fa-twitter w3-hover-opacity"></i></a>
</footer>
</body>
</html>