-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.78 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Disappearing Ninjas</title>
<link rel="stylesheet" href="/css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/master.js"></script>
</head>
<body>
<div id="wrapper">
<div id="form_box">
<form id="contact_form" action="" method="get">
<div class="form_group">
<label for="f_name">First Name: </label>
<input type="text" id="f_name" name="f_name" placeholder="First Name">
</div>
<div class="form_group">
<label for="l_name">Last Name: </label>
<input type="text" id="l_name" name="l_name" placeholder="Last Name">
</div>
<div class="form_group">
<label for="desc">Description: </label>
<textarea id="desc" name="desc" rows="8"></textarea>
</div>
<input id="add_contact" type="submit" name="submit" value="Add Contact">
</form>
</div>
<div id="card_box">
<div class="card">
<h2>First/last name</h2>
<p class="hidden">Description</p>
</div>
<div class="card">
<h2>First/last name</h2>
<p class="hidden">Description</p>
</div>
<div class="card">
<h2>First/last name</h2>
<p class="hidden">Description</p>
</div>
</div>
</div>
</body>
</html>