This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage1.html
65 lines (65 loc) · 2.37 KB
/
page1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<title>Погода в Санкт-Петербурге</title>
<style>
.rounded-img{
width: 60%;
border-radius: 50%;
padding: 1.0em;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" aria-expanded="false" aria-label="Переключатель навигации">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="page1.html">Москва</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="page1_St.html">Санкт-Петерург</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container text-center">
<img class="rounded-img" src="st_peterbug.jpg" alt="Фото СПб" />
<h2>Погода в Санкт-Петербурге в июне 2023</h2>
<table class="table table-sm">
<thead class="table-light">
<tr>
<th scope="col">12 июня</th>
<th scope="col">13 июня</th>
<th scope="col">14 июня</th>
<th scope="col">15 июня</th>
<th scope="col">16 июня</th>
<th scope="col">17 июня</th>
<th scope="col">18 июня</th>
</tr>
</thead>
<tbody>
<tr>
<td>18 t</td>
<td>12 t</td>
<td>17 t</td>
<td>16 t</td>
<td>20 t</td>
<td>22 t</td>
<td>25 t</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>