-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplay.html
60 lines (48 loc) · 2.58 KB
/
play.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Games on Shade Studio Pro</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Iconscout Link For Icons -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<!-- Theme included stylesheets --> <link href="//cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet"> <link href="//cdn.quilljs.com/1.3.6/quill.bubble.css" rel="stylesheet"> <!-- Core build with no theme, formatting, non-essential modules --> <link href="//cdn.quilljs.com/1.3.6/quill.core.css" rel="stylesheet"> <script src="//cdn.quilljs.com/1.3.6/quill.core.js"></script>
</head>
<body>
<script src="script.js"></script>
<nav class="nav container">
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="index.html" class="nav__link active-link">
<i class='bx bx-home-alt nav__icon'></i>
<span class="nav__name">Home</span>
</a>
</li>
<li class="nav__item">
<a href="play.html" class="nav__link">
<i class='bx bx-joystick nav__icon'></i>
<span class="nav__name">Play</span>
</a>
</li>
<li class="nav__item">
<a href="watch.html" class="nav__link">
<i class='bx bx-film nav__icon'></i>
<span class="nav__name">Watch</span>
</a>
</li>
<li class="nav__item">
<a href="search.html" class="nav__link">
<i class='bx bx-search nav__icon'></i>
<span class="nav__name">Search</span>
</a>
</li>
</ul>
</div>
</nav>
<iframe class="transparent" src="https://bing.com">
</iframe>
</body>
</html>