-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (71 loc) · 2.2 KB
/
index.html
File metadata and controls
83 lines (71 loc) · 2.2 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
<html>
<head>
<title>:)
</title>
<link rel="stylesheet" type="text/css" href="phone.css">
</head>
<body>
<div id="tabBar">
<button class="tabs" id="tabOne">Dialer</button>
<button class="tabs" id="tabTwo">Contact List</button>
<button class="tabs" id="tabThree">Add Contact</button>
</div>
<div id="tabContent">
<div id="contentDialer">
<h2>Dialer</h2>
<form>
<label for="numDisplay"></label>
<input type="text" name="numDisplay" placeholder="123" disabled>
</form>
<div id="keyPad">
<button class="dialerButtons" id="one">1</button>
<button class="dialerButtons" id="two">2</button>
<button class="dialerButtons" id="three">3</button>
<br>
<button class="dialerButtons" id="four">4</button>
<button class="dialerButtons" id="five">5</button>
<button class="dialerButtons" id="six">6</button>
<br>
<button class="dialerButtons" id="seven">7</button>
<button class="dialerButtons" id="eight">8</button>
<button class="dialerButtons" id="nine">9</button>
<br>
<button class="dialerButtons" id="star">*</button>
<button class="dialerButtons" id="zero">0</button>
<button class="dialerButtons" id="pound">#</button>
<br>
<button class="dialerButtons" id="dial">Dial</button>
<button class="dialerButtons" id="dialClear">Clear</button>
</div>
</div>
<div id="contentList">
<h2>Contact List</h2>
<table>
<tr><td>Ash Ketchum</td></tr>
<tr><td>Mikayla Pickett</td></tr>
<tr><td>Santa Claus</td></tr>
<tr><td>Lady</td></tr>
</table>
</div>
<div id="contentAdd">
<h2>Add Contact</h2>
<form>
<label for="nameField">Name</label>
<input type="text" name="nameField">
</form>
<form>
<label for="phoneNum">Phone Number</label>
<input type="text" name="phoneNum">
</form>
<form>
<label for="email">Email Address</label>
<input type="text" name="email">
</form>
<button class= "addContactButtons" id="addContact">Add Contact</button>
<button class= "addContactButtons" id="contactClear">Clear</button>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="phone.js"></script>
</body>
</html>