-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (85 loc) · 4.33 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Public API Requests</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="css/normalize.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<!-- =======================
Gallery container
======================== -->
<header>
<div class="header-inner-container">
<div class="header-text-container">
<h1>EMPLOYEE DIRECTORY</h1>
</div>
<div class="search-container">
<!-- ======================
Search markup:
You can use the commented out markup below as a template
for your search feature, but you must use JS to create and
append it to `search-container` div.
IMPORTANT: Altering the arrangement of the markup and the
attributes used may break the styles or functionality.
<form action="#" method="get">
<input type="search" id="search-input" class="search-input" placeholder="Search...">
<input type="submit" value="🔍" id="search-submit" class="search-submit">
</form>
======================= -->
</div>
</div>
</header>
<div id="gallery" class="gallery">
<!-- ======================
Gallery markup:
You can use the commented out markup below as a template
for each of your Gallery items, but you must use JS to
create and append them to the `gallery` div.
IMPORTANT: Altering the arrangement of the markup and the
attributes used may break the styles or functionality.
<div class="card">
<div class="card-img-container">
<img class="card-img" src="https://placehold.it/90x90" alt="profile picture">
</div>
<div class="card-info-container">
<h3 id="name" class="card-name cap">first last</h3>
<p class="card-text">email</p>
<p class="card-text cap">city, state</p>
</div>
</div>
======================= -->
</div>
<!-- =======================
Modal markup:
You can use the commented out markup below as a template
for your modal, but you must use JS to create and append
it to `body`.
IMPORTANT: Altering the arrangement of the markup and the
attributes used may break the styles or functionality.
<div class="modal-container">
<div class="modal">
<button type="button" id="modal-close-btn" class="modal-close-btn"><strong>X</strong></button>
<div class="modal-info-container">
<img class="modal-img" src="https://placehold.it/125x125" alt="profile picture">
<h3 id="name" class="modal-name cap">name</h3>
<p class="modal-text">email</p>
<p class="modal-text cap">city</p>
<hr>
<p class="modal-text">(555) 555-5555</p>
<p class="modal-text">123 Portland Ave., Portland, OR 97204</p>
<p class="modal-text">Birthday: 10/21/2015</p>
</div>
</div>
// IMPORTANT: Below is only for exceeds tasks
<div class="modal-btn-container">
<button type="button" id="modal-prev" class="modal-prev btn">Prev</button>
<button type="button" id="modal-next" class="modal-next btn">Next</button>
</div>
</div>
======================== -->
<script src="js/scripts.js"></script>
</body>
</html>