-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (38 loc) · 1.62 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="TEHGAM">
<title>Первая страница сайта</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/jumbotron-narrow.css">
</head>
<body>
<div class="container">
<div class="header">
<nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class="active"><a href="#">Домашняя</a></li>
<li role="presentation"><a href="#">О проекте</a></li>
<li role="presentation"><a href="#">Контакты</a></li>
</ul>
</nav>
<h3 class="text-muted">TEHGAM.COM</h3>
</div>
<div class="jumbotron">
<h1>Добро пожаловать</h1>
<p class="lead">Сайт в данный момент все ещё находится в разработке.</p>
</div>
<footer class="footer">
<p>© <a href="http://tehgam.com" target="_blank">TEHGAM.COM</a> 2014</p>
</footer>
</div> <!-- /container -->
</body>
</html>