-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·58 lines (56 loc) · 2.21 KB
/
index.html
File metadata and controls
executable file
·58 lines (56 loc) · 2.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- <meta http-equiv="X-UA-Compatible" content="IE=edge">-->
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/index.css">
<script src="main.js"></script>
</head>
<body ng-app="app" ng-controller="indexCtrl">
<div class='bcg'></div>
<div class='wrapper'>
<header>
<p>—универсальная платформа для чтения комиксов</p>
</header>
<div class='main-block'>
<div class='nav-wrapper'>
<div class='nav-point'>
<a href="./catalog.html" class='underline'>топ</a>
<p>—самые популярные</p>
</div>
<div class='nav-point'>
<a href="./catalog.html" class='underline'>рекомендации</a>
<p>—наш выбор</p>
</div>
<div class='nav-point'>
<a href="catalog.html" class='underline'>каталог</a>
<p>—все комиксы</p>
</div>
</div>
<div id='content-wrapper'>
<p>PIC</p>
<p>STORIES</p>
<div class='search-wrapper'>
<a href="./catalog.html" ng-click="">
<img src="./images/magnifying-glass.svg" alt="">
</a>
<input type="text" placeholder="поиск по названию и описанию">
</div>
</div>
</div>
<footer>
<div class='contacts-wrapper'>
<p>contact us:</p>
<a href="http://t.me/psvm_16" target="_blank">
<img src="./images/telegram.svg" alt="">
</a>
</div>
</footer>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<script src="/js/index.js"></script>
</html>