-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (75 loc) · 2.94 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Site Title -->
<title>3D Game Player | Dev-Z</title>
<!-- Favicon Link -->
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<!-- All CSS -->
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<!-- Player Body Wrapper -->
<div class="container">
<!-- Main Player Body -->
<div class="player-wrapper">
<!-- Player Screen -->
<div class="player-screen-wrapper">
<div class="player-screen"></div>
</div>
<!-- Player Top Buttons -->
<div class="player-buttons-wrapper">
<!-- Player Top Left Side Buttons -->
<div class="player-buttons player-buttons-left">
<!-- Single Buttons -->
<div class="buttons buttons-square"></div>
<div class="buttons buttons-square"></div>
</div>
<!-- Player Top Right Side Buttons -->
<div class="player-buttons player-buttons-right">
<!-- Single Buttons -->
<div class="buttons buttons-rounded"></div>
<div class="buttons buttons-rounded"></div>
</div>
</div>
<!-- Player Bottom Buttons -->
<div class="player-buttons-bottom">
<!-- Single Buttons -->
<div class="buttons buttons-pill"></div>
<div class="buttons buttons-pill"></div>
</div>
<!-- Player Speakers -->
<div class="player-speakers-wrapper">
<div class="player-speakers-group">
<!--Single Speakers -->
<div class="speaker"></div>
<div class="speaker"></div>
<div class="speaker"></div>
<div class="speaker"></div>
<div class="speaker"></div>
</div>
</div>
<!-- Player Volume Button -->
<div class="player-volume"></div>
<!-- Player front Side Hidder -->
<span class="player-side-hidder"></span>
<!-- Player Middle Side -->
<div class="player-middle-wrapper"></div>
<!-- Player Back Side -->
<div class="player-back-wrapper">
<div class="player-back-top"></div>
<!-- Player Battery Cover -->
<div class="player-battery-cover">
<div class="player-battery-cover-head"></div>
</div>
<!-- Player Back Side Hidder -->
<span class="player-back-side-hidder"></span>
</div>
</div>
</div>
<!-- All Script -->
<script type="text/javascript" src="./assets/js/script.js"></script>
</body>
</html>