-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddress_book.html
More file actions
62 lines (56 loc) · 3.2 KB
/
address_book.html
File metadata and controls
62 lines (56 loc) · 3.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
<!DOCTYPE html>
<html>
<head>
<title>FacesBook - Контактная книга</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/general.css">
<link rel="stylesheet" href="css/address_book.css">
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-red w3-card w3-left-align w3-large">
<a class="w3-bar-item w3-button w3-hide-medium w3-hide-large w3-right w3-padding-large w3-hover-white w3-large w3-red" href="javascript:void(0);" onclick="menuSwitcher()" title="Нажмите для открытия меню навигации"><i class="fa fa-bars"></i></a>
<a href="index.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">Главная</a>
<a href="about.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">О сервисе</a>
<a href="address_book.html" class="w3-bar-item w3-button w3-padding-large w3-white">Контактная книга</a>
<a href="login.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white" id="show-auth">Авторизация</a>
<a href="user_page.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white" id="show-user">USER</a>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium w3-large">
<a href="about.html" class="w3-bar-item w3-button w3-padding-large">О сервисе</a>
<a href="address_book.htmluser_page.html" class="w3-bar-item w3-button w3-padding-large">Контактная книга</a>
<a href="auth.html" class="w3-bar-item w3-button w3-padding-large" id="show-auth-small">Авторизация</a>
<a href="user_page.html" class="w3-bar-item w3-button w3-padding-large" id="show-user-small">USER</a>
</div>
</div>
<!-- Header -->
<header class="w3-container w3-red w3-center" style="padding:128px 16px">
<h1 class="w3-margin w3-jumbo">FacesBook</h1>
<p class="w3-xlarge">Контактная книга</p>
</header>
<!-- First Grid -->
<div class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content w3-panel w3-center">
<input class="search-element" type="text" id="search-indicator">
<select class="search-element" id="category-select"></select>
</div>
<div class="w3-content w3-center">
<table class="w3-text-red w3-table-all w3-centered" id="contacts-table">
</table>
</div>
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-64 w3-center w3-opacity">
<p>Copyright © 2017, <a href="https://www.t.me/snapeeye" target="_blank">Vongola Inc</a>., All Rights Reserved</p>
</footer>
<script src="js/general.js" type="text/javascript"></script>
<script src="js/address_book.js" type="text/javascript"></script>
</body>
</html>