-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
100 lines (54 loc) · 2.51 KB
/
contacts.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
<html>
<head>
<title>Контакты</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='stylesheet' href='./css/bootstrap.min.css' />
<link rel='stylesheet' href='./css/style.css' />
<link href='https://fonts.googleapis.com/css?family=Comfortaa&subset=cyrillic,cyrillic-ext' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
</head>
<body>
<title>Menu</title>
</head>
<body>
<div class="container-fluid" >
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-1">
<span class="sr-only">Menu</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="./index.html">Главная</a></li>
<li><a href="./terms.html">Термины и понятия</a></li>
<li><a href="./calc.html">Калькулятор</a></li>
<li><a href="./video.html">Видеоуроки</a></li>
<li><a href="./lit.html">Литература</a></li>
<li><a href="./contacts.html">Контакты</a></li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class='mainPageBlock col-xs-12 col-md-12 col-lg-12'>
<h4>Мои контакты</h4>
<p>
Прошу внимательно ознакомиться с разделом ВОПРОСЫ И ОТВЕТЫ на самой Главной странице этого сайта
</p>
</div>
</div>
<div class='user-footer'>
</div>
<script src='./js/jquery-2.1.4.min.js'></script>
<script src='./js/bootstrap.min.js'></script>
</body>
</html>