-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (86 loc) · 3.11 KB
/
index.html
File metadata and controls
86 lines (86 loc) · 3.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="font/Rimouski.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w=="
crossorigin="anonymous"
/>
<title>Document</title>
</head>
<body>
<video preload="auto" autoplay loop id="myVideo">
<source
id="video-source"
src="icons/Top View of a Road in the Forest.mp4"
type="video/mp4"
/>
</video>
<audio title="Radio" id="radio">
<source
src="https://coderadio-relay-blr.freecodecamp.org/radio/8010/radio.mp3"
type="audio/mpeg"
title="Radio"
/>
</audio>
<button id="videoBtn">Play</button>
<div class="radio-player-container">
<div class="radio-player">
<i class="fas fa-play"></i>
<div class="timer">0:00</div>
<span>Listen To Radio</span>
<i class="fas fa-volume-up"></i>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">City</button>
<div class="dropdown-content">
<button class="button-grevena btn" type="button" value="Grevena">
Grevena
</button>
<button class="button-thess btn" type="button" value="Thessaloniki">
Thessaloniki
</button>
<button class="button-athens btn" type="button" value="Athens">
Athens
</button>
<button class="button-london btn" type="button" value="London">
London
</button>
<button class="button-new-york btn" type="button" value="New York">
New York
</button>
<button class="button-la btn" type="button" value="Los Angeles">
Los Angles
</button>
<button
class="button-hong-kong btn"
type="button"
value="Hong Kong"
>
Hong Kong
</button>
</div>
</div>
<div class="container">
<div class="app-title"><p>Weather</p></div>
<div class="notification"></div>
<div class="weather-container">
<div class="weather-icon"><img src="icons/unknown.png" /></div>
<div class="temperature-value">
<p>- °<span>C</span></p>
</div>
<div class="temperature-description"><p>-</p></div>
<div class="location"><p>-</p></div>
<div class="current-time"><p>-</p></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>