-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 1.08 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Hello!</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css" type="text/css">
<script type="text/javascript" src="script.js" async defer></script>
</head>
<body>
<div class="container">
Select language:
<select id="countries">
<option value="Poland" id="Poland">Polish</option>
<option value="UK" id="UK" selected>English</option>
<option value="France" id="France">French</option>
<option value="Russia" id="Russia">Russian</option>
<option value="Germany" id="Germany">German</option>
</select>
<div class="header">
<p id="welcome">Hey!</p>
</div>
<div class="content">
<p id="time"></p>
<p id="date"></p>
</div>
</div>
</body>
</html>