-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (87 loc) · 5.12 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Проект EasyPark</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="static/css/styles.css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
</head>
<body class="d-flex flex-column align-items-center" style="background-color: lightblue">
<h3 class="text-center col-lg-4 col-md-6 col-sm-12">
Данная страничка посвящена проекту, направленного на решение задачи хакатона
<a class="text-decoration-none" href="https://codenrock.com/contests/urbathon#/">"Урбатон"</a>
по треку "Оптимизация парковочных мест"
</h3>
<div class="mt-2 text-center col-lg-4 col-md-6 col-sm-12">Нашей командой было создано мобильное приложение на React Native, и бекенд сервис на Django, к которому и обращалось приложение</div>
<h4 class="mt-4">Демонстрация работы</h4>
<video class="rounded-4 mt-2" controls>
<source src="static/img/vid.mp4" type="video/mp4" />
Sorry, your browser doesn't support embedded videos, but don't worry, you can
<a href="static/img/vid.mp4">download it</a>
and watch it with your favorite video player!
</video>
<h4 class="mt-4">Презентация</h4>
<div class="mt-2 col-lg-8 col-md-10 col-sm-12">
<div id="presentation" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="static/img/presentation-1.png" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="static/img/presentation-2.png" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="static/img/presentation-3.png" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="static/img/presentation-3.png" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="static/img/presentation-4.png" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="static/img/presentation-5.png" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="static/img/presentation-6.png" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="static/img/presentation-7.png" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="static/img/presentation-8.png" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="static/img/presentation-9.png" class="d-block w-100" alt="..." />
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#presentation" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#presentation" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<h4 class="mt-4">Использованные технологии</h4>
<div class="d-flex flex-row w-100 justify-content-center" id="tech">
<div style="background-color: white" class="rounded-4 col-lg-4 col-md-6 col-sm-8">
<img class="object-fit-contain h-100 w-100" src="static/img/tech.png" />
</div>
</div>
<h4 class="mt-4">Итоги</h4>
<span>Мы стали финалистами</span>
<div class="d-flex mt-2 flex-row w-100 justify-content-center">
<div class="col-lg-4 col-md-6 col-sm-8">
<img class="object-fit-contain h-100 w-100 rounded-4" src="static/img/final.png" />
</div>
</div>
<div class="mt-4"></div>
<div class="mt-4"></div>
</body>
</html>