-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact-us.html
71 lines (66 loc) · 2.27 KB
/
contact-us.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
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home | ISUD</title>
<link rel=icon href="assets/images/logo/ISUD_Logo_Globe_Only.png">
<link rel="stylesheet" type="text/css" href="css/meyers_and_normalize-form_reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body id="contactPage">
<!-- TOP NAVIGATION MENU -->
<header id="top_nav_container" class="nav_container">
<div id="top_nav_logo+name">
<img src="assets/images/logo/ISUD_Logo_Globe_Only.png" alt="logo">
<a id="site_name" href="index.html">The International Society for Universal Dialogue</a>
</div>
</header>
<nav class="nav_container">
<div id="top_nav_content" class="nav_content">
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a href="about-us.html">About</a></li>
<li><a href="contact-us.html">Contact</a></li>
</ul>
</div>
</nav>
<p>Please Contact us through this method:</p>
<form method="get" action="#null" name="registerForm" autocomplete="on" onsubmit="return correctForm()">
<div class="box">
<p id="register">Register Now!</p>
<div class="firstNameInput">
<label>
<input type="text" id="firstNameInput" name="firstname" placeholder="First Name" />
</label>
</div>
<div class="lastNameInput">
<label>
<input type="text" id="lastNameInput" name="lastname" placeholder="Last Name" />
</label>
</div>
<div class="emailInput">
<label>
<input type="text" id="emailInput" name="email" placeholder="E-mail Address" />
</label>
</div>
<div class="phoneInput">
<label>
<input type="text" id="phoneInput" name="phone" placeholder="Phone Number" />
</label>
</div>
<div>
<button type="submit" class="btn-1">Sign-Up</button>
</div>
</div>
</form>
<footer id="bottom_nav_container" class="nav_container">
<div class="nav_content">
<ul>
<li><a href="https://www.facebook.com/">Facebook</a></li>
<li><a href="https://www.linkedin.com">LinkedIn</a></li>
<li><a href="index.html">ISUD</a></li>
</ul>
</div>
</footer>
</body>
</html>