-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (72 loc) · 3.17 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
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AR/VR Virtual Showroom</title>
<link rel="stylesheet" href="styles.css">
<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=Poppins:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="logo">AR/VR Virtual Showroom</div>
<div class="nav-links">
<a href="#">Home</a>
<a href="#library">Products</a>
<a href="#p1">Contact</a>
<a href="#pro">Try VR</a>
</div>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-content">
<h1>Experience the Future</h1>
<p>Immerse yourself in our cutting-edge AR/VR products.</p>
<button onclick="location.href='#library'" class="btn">Check 'em out</button><br>
<a href="#pro" class="attract">Try 3D Headset model now</a><br>
<p class="disclaimer" id='shit'>Disclaimer:That isn't a video!! Click and find out what it is</p>
</div>
</section>
<iframe id="pro" frameborder="0" src="https://sketchfab.com/models/8bd7123015ee4509b1c312f54a877597/embed" height="750px" width="100%px"> </iframe>
<section class="showcase">
<h2 id="library">Featured Products</h2>
<div class="grid">
<!-- <div class="card">
<img src="vr1.jpg" alt='AR Headset' >
<h3>AR Headset</h3>
<p>Experience augmented reality like never before.</p>
</div>
<div class="card">
<img src="v2.jpg" alt='VR Gaming Setup' >
<h3>VR Gaming Setup</h3>
<p>Immerse yourself in virtual worlds and gaming experiences.</p>
</div> -->
</div>
</section>
</main>
<footer>
<div class="p1" id="p1">
<h1><u>Contact Us</u></h1>
<div class="details">
<p><b>Official aproach:</b> </p> <a href="mailto:[email protected]?subject=Hello Fresh Intern">Mail me</a>
</div>
<div class="details">
<p><b><u>Wanna speak?</u></b> <br><b>Hit me a call at :</b> +91 9100811385</p>
</div>
<div class="details">
<p><b>Wanna see more works? :</b></p> <a href="https://github.com/AaryaDarisi">They're here</a>
</div>
<div class="details">
<p><b>LinkedIn:</b></p> <a href="https://www.linkedin.com/in/aaryadarisi/">You can also ping me here!</a>
</div>
</div>
<p class="end">© AR/VR Virtual Showroom</p>
</footer>
<script src="app.js"></script>
</body>
</html>