-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (48 loc) · 1.64 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
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="cOne.css">
</head>
<body>
<div class='jumbotron cOne'>
<div class="container-fluid">
<h1>CHALLENGE ONE</h1>
</div>
</div>
<section>
<table class="personTable">
<thead>
<tr>
<th>First</th>
<th>Last</th>
<th>Phone</th>
</tr>
</thead>
<tbody id='personList'>
</tbody>
</table>
</section>
<section>
<<form action="" method="POST" role="form">
<legend>Contact Info</legend>
<div class="form-group">
<label for="">First Name</label>
<input type="text" class="form-control" id="" placeholder="Input field">
</div>
<div class="form-group">
<label for="">Last Name</label>
<input type="text" class="form-control" id="" placeholder="Input field">
</div>
<div class="form-group">
<label for="">Phone Number</label>
<input type="<input type="tel" name="" id="input" class="form-control" value="" required="required" title="">" class="form-control" id="" placeholder="Input field">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</section>
</body>
<script src="https://code.jquery.com/jquery-2.2.0.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="app.js"></script>
</html>