-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (77 loc) · 2.39 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Manager</title>
<link rel="stylesheet" href="styles/styles.css" />
<link rel="stylesheet" href="styles/responsive.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<div class="modal">
<form class="modal-card">
<div class="inputs-container">
<div class="input-container">
<label for="name" class="for-name">name*</label>
<input
type="text"
placeholder="contact name"
id="name"
class="col-6"
/>
</div>
<div class="input-container">
<label for="phone" class="for-phone">phone number*</label>
<input
type="tel"
placeholder="contact phone number"
id="phone"
class="col-6"
/>
</div>
<div class="input-container">
<label for="website">website</label>
<input type="text" id="website" class="col-6" />
</div>
<div class="input-container">
<label for="description">description</label>
<input
type="text"
id="description"
placeholder="decription"
class="col-6"
/>
</div>
</div>
<div class="buttons">
<button class="delete">delete</button>
<button class="cancel">cancel</button>
<button class="save">save</button>
</div>
</form>
</div>
<main>
<ul class="contacts-list col-11 col-md-6 col-lg-5">
<div
style="
margin-bottom: 25px;
display: flex;
justify-content: space-evenly;
"
>
<h2>your contacts</h2>
<button class="delete-all">delete all</button>
</div>
</ul>
<button class="add-contact">+</button>
</main>
<script src="js/ui.js"></script>
<script src="js/contact.js"></script>
<script src="js/app.js"></script>
</body>
</html>