-
Notifications
You must be signed in to change notification settings - Fork 0
/
running.html
104 lines (93 loc) · 3.28 KB
/
running.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
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Maverick's blog</title>
<link rel="stylesheet" href="CSS/masterRunning.css">
<link rel="shortcut icon" href="Logos/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500|Fjalla+One" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Fjalla+One|Mukta+Malar|Poppins"> -->
</head>
<body>
<nav>
<div class="navigation-bar">
<div class="name">
<a href="main.html" id="toMain">MAVERICK</a>
</div>
<div class="dropdown">
<button class="dropbtn">PHOTOGRAPHY</button>
<div class="dropdown-content">
<a href="travel.html" class="trav">TRAVEL</a>
<a href="streets.html">STREETS</a>
</div>
</div>
<div class="dropdownSport">
<button class="dropbtnSport">SPORT</button>
<div class="dropdownSport-content">
<a href="running.html">RUNNING</a>
<a href="alpinism.html">ALPINISM</a>
</div>
</div>
<div class="aboutme">
<a href="about.html">ABOUT</a>
</div>
<div class="contactme">
<a href="contact.html">CONTACT</a>
</div>
</div>
</nav>
<article class="main">
<div class="inf">
<div class="inf-text">
I really running, so I made a short table which represents all my
competetive runs with time and place which I've done. <br>Also you can check my
weekly runs <a href="dailyruns.html">here</a>!
</div>
</div>
<div class="table-outer">
<table class="runs">
<tr class="headers">
<th><b>Title</b></th>
<th><b>Distance</b></th>
<th><b>Place</b></th>
<th><b>Time</b></th>
<th><b>Date of run</b></th>
</tr>
<tr>
<th>We Run Moscow</th>
<th>10km</th>
<th>-</th>
<th>58:34</th>
<th>10/09/2014</th>
</tr>
<tr>
<th>Superhero Run</th>
<th>5km</th>
<th>26</th>
<th>23:54</th>
<th>06/10/18</th>
</tr>
<tr>
<th>18th Traditional Autumn MAI Trail </th>
<th>12,8km</th>
<th>38</th>
<th>01:04:34</th>
<th>04/11/18</th>
</tr>
</table>
</div>
</article>
<footer class="social">
<div class="end" >
<a href="https://www.instagram.com/mavericks_brainchild/" target="_blank">
<img src="Logos/instagram-black.svg" alt="IG-logo" class="logo" ></a>
<a href="https://www.facebook.com/profile.php?id=100014060569202" target="_blank">
<img src="Logos/facebook-black.svg" alt="FB-logo" class="logo"></a>
<a href="https://www.youtube.com/channel/UC-W0MyIZcPgs-kB-8Sk4QNQ?view_as=subscriber" target="_blank">
<img src="Logos/youtube-black.svg" alt="YT-logo" class="logo"></a>
<a href="https://github.com/mvrck96" target="_blank">
<img src="Logos/github-black.svg" alt="GH-logo" class="logo"></a>
</div>
</footer>
</body>
</html>