-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (42 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale = 1.0" />
<link rel="stylesheet" href="StyleSheet1.css" />
<title></title>
</head>
<body>
<div id="container">
<div id="menuHead">HEAD</div>
<div>
<div id="menu">
<div id="favouriteList"></div>
<div id="unknownList"></div>
<div id="doubtfulList"></div>
<div id="knownList"></div>
</div>
<div class="toggle" id="card">
<div id="word">WORD</div>
<div id="flipside">СЛОВО</div>
<div id="transcription">TRANSCRIPTION</div>
</div>
<div id="topPanel">
<img id="like" src="img/unlike.png" />
<img id="menuBtn" src="img/menu.png" />
<img id="flip" src="img/flip.png" />
</div>
<div id="arrows">
<img id="arrowLeft" src="img/arrow.png" />
<img id="arrowRight" src="img/arrow.png" />
</div>
<div id="panel">
<div id="know">ЗНАЮ</div>
<div id="doubt">СУМНІВАЮСЯ</div>
<div id="dontKnow">НЕ ЗНАЮ</div>
</div>
</div>
</div>
<script type="module" src="Script1.js"></script>
</body>
</html>