-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodal.html
33 lines (32 loc) · 1.07 KB
/
modal.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="modal.css">
<meta charset="utf-8">
<title></title>
</head>
<header>
<nav>
<div class="navbar">
<ul>
<li class="navs"><img id="logo" src="http://www.atomicfistpunch.com/ATOMIC_FIST_PUNCH!!!/TEASER_TRAILER_files/4017612.jpg" alt="logo"></li>
<li class="navs"><a class="navlink" href="index.html">Home</a></li>
<li class="navs"><a class="navlink" href="contact.html">Contact</a></li>
<li class="navs"><a class="navlink" href="about.html">About</a></li>
</ul>
</div>
</nav>
</header>
<body>
<div class="modal" id="hidden_modal">
<button class="close-button" id="close-button">Close Button</button>
<div class="modals">
<h2>Want To Join the Squad?</h2>
<label for="email">E-mail Address: </label> <input type="text" name="email" id="email">
<button onclick="checkThisModal()">submit</button>
</div>
</div>
<script type="text/javascript" src="modal.js">
</script>
</body>
</html>