-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (108 loc) · 3.85 KB
/
Copy pathindex.html
File metadata and controls
108 lines (108 loc) · 3.85 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Oculus</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header class="header">
<div class="container">
<div class="header__inner">
<a class="logo" href="#">
<img src="images/logo.svg" alt="logo" />
</a>
<nav class="menu">
<ul class="menu__list">
<li class="menu__list-item">
<a class="menu__link" href="#">Apps and Games</a>
</li>
<li class="menu__list-item">
<a class="menu__link" href="#">Meta Quest</a>
</li>
<li class="menu__list-item">
<a class="menu__link" href="#">Support</a>
</li>
</ul>
</nav>
<ul class="menu__lang">
<li class="menu__lang-item">
<a class="menu__lang-link" href="#">Es</a> /
</li>
<li class="menu__lang-item">
<a class="menu__lang-link" href="">En</a>
</li>
</ul>
<button class="header__btn"><span></span><span></span></button>
</div>
</div>
</header>
<section class="top">
<div class="video-bg">
<video autoplay muted loop playsinline>
<source src="images/video.webm" type="video/webm" />
<source src="images/video.mp4" type="video/mp4" />
</video>
</div>
<div class="container">
<div class="top__inner">
<div class="top__content">
<h1 class="top__title">
oculus
<span>meta 3</span>
</h1>
<p class="top__slogan">Epic gaming just got bigger</p>
<p class="top__text">
Experience gaming, fitness and entertainment, including your
favorite apps, like Facebook, Instagram and WhatsApp—all within
headset.
</p>
</div>
<div class="top__info">
<dl class="top__info-list">
<div>
<dt>120 Hz</dt>
<dd>frame rate</dd>
</div>
<div>
<dt>110 °</dt>
<dd>Viewing angle</dd>
</div>
<div>
<dt>12</dt>
<dd>months Warranty</dd>
</div>
</dl>
<div class="top__explore">
<button class="top__explore-btn">Explore</button>
<div class="top__explore-box top__box">
<canvas id="canvas" width="320" height="320"></canvas>
<div class="top__box-item">
<img src="/images/oculus.png" alt="" />
</div>
<button class="top__plus top__plus-one">
<span class="top__plus-decor">+</span>
<span class="top__plus-text">Immersive 3D Audio</span>
</button>
<button class="top__plus top__plus-two">
<span class="top__plus-decor">+</span>
<span class="top__plus-text">Dual RGB Camera</span>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="js/main.js"></script>
</body>
</html>