forked from netology-code/git-homeworks-neuro-pr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (63 loc) · 2.55 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>RoyalityFree</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper">
<div class="container-fluid">
<header>
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
<a class="navbar-brand" href="#">
RoyalityFree
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</nav>
</header>
<main>
<div class="jumbotron">
<h1 class="display-4">Royality Free image aggregator</h1>
<p class="lead">We aggregate images from royality free stocks.</p>
<hr class="my-4">
<a class="btn btn-primary btn-lg" href="#" role="button">Download</a>
</div>
<section class="mt-6">
<h2>Images from <a href="https://pixabay.com">Pixabay</a></h2>
<div>
<img src="img/pixabay-foal.jpg" class="rounded" alt="foal">
<img src="img/pixabay-lion.jpg" class="rounded" alt="lion">
<img src="img/pixabay-wolf.jpg" class="rounded" alt="wolf">
</div>
</section>
<section class="mt-6">
<h2>Images from <a href="https://pexels.com">Pexels</a></h2>
<div>
<img src="img/pexels-drops.jpeg" class="rounded" alt="drops">
<img src="img/pexels-mountains.jpeg" class="rounded" alt="mountains">
<img src="img/pexels-railway.jpeg" class="rounded" alt="railway">
</div>
</section>
<section class="mt-6">
<h2>Images from other resources</h2>
<div>
We work on it.
</div>
</section>
</main>
<footer>
<p class="text-center">© RoyalityFree. All rights reserved.</p>
</footer>
</div>
</div>
<script src="js/jquery.slim.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>