forked from ArjunGambhir20099/Linkways23
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct2.html
122 lines (112 loc) · 6.17 KB
/
product2.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE HTML>
<html>
<head>
<title>TechSyndicate</title>
<link type='text/css' href='style.css' rel='stylesheet'>
<link rel="stylesheet" href="product.css">
<script src='script.js'></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="#"> <!--image for the favicon-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"></script>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap" rel="stylesheet">
<!--Adding an font awesome icon stylesheet-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"></script>
</head>
<body>
<!----------------------------------------------------------------------------------->
<!--Navigation Bar #FFFFFF #000000 #CEDFFF #6573EC-->
<div class="navbar">
<div class="leftNav">
<a href="index.html"><p class="logo">LINKWAYS</p></a>
</div>
<div class="rightNav">
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="findmy.html">FindMy</a></li>
<li><a href="bookings.html">Bookings</a></li>
</ul>
<button class="signup" onclick="window.location.href='login.html'">Book Tickets</button>
</div>
</div>
<section id="prodetails" class="product">
<div class="single-pro-details">
<button class="btn" onclick="window.location.href='shop.html'"><i class="bx bx-arrow-back"></i></button>
<h4 class="product-title">LinkWays Special</h4>
<span>Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum
<li>Very Good Product</li>
<li>Ekdum Nice Nice</li>
<li>Pls Lelo Yaar</li>
</span>
<button class="button" onclick="window.location.href='###'">Buy Now</button>
</div>
<div class="single-pro-image">
<div class="proname"><h6>Epic Cloth</h6></div>
<model-viewer src="cloth.glb" shadow-intensity="1" auto-rotate camera-controls touch-action="pan-y"></model-viewer>
</div>
</section>
<footer>
<div class="row">
<div class="col">
<a href="index.html"><p class="logo">LINKWAYS</p></a>
<h4><strong>Subscribe to our newsletter to be notified about our latest developments.</strong></h4>
<form>
<input type="email" placeholder="Enter E-Mail Address" required>
<button type="submit"><i class="fa-solid fa-arrow-up-right-from-square"></i></button>
</form>
</div>
<div class="col">
<h4><strong>Links</strong></h4>
<ul>
<li><a class="small-text" href="https://www.youtube.com/watch?v=Eer3YnRx_d8">Home</a></li>
<li><a class="small-text" href="https://www.youtube.com/watch?v=Eer3YnRx_d8">About Us</a></li>
<li><a class="small-text" href="https://www.youtube.com/watch?v=Eer3YnRx_d8">Jobs</a></li>
<li><a class="small-text" href="https://www.youtube.com/watch?v=Eer3YnRx_d8">Contact</a></li>
</ul>
</div>
<div class="col">
<h4><strong>News</strong></h4>
<ul>
<li><a class="small-text" href="https://www.youtube.com/watch?v=Eer3YnRx_d8">FAQ</a></li>
<li><a class="small-text" href="https://www.youtube.com/watch?v=Eer3YnRx_d8">Media</a></li>
<li><a class="small-text" href="https://www.youtube.com/watch?v=Eer3YnRx_d8">Blog</a></li>
<li><a class="small-text" href="https://www.youtube.com/watch?v=Eer3YnRx_d8">Articles</a></li>
</ul>
</div>
<div class="col">
<h4><strong>Legal</strong></h4>
<ul>
<li><a class="small-text" href="https://www.youtube.com/watch?v=Eer3YnRx_d8">Terms</a></li>
<li><a class="small-text" href="https://www.youtube.com/watch?v=Eer3YnRx_d8">Privacy Policy</a></li>
<li><a class="small-text" href="https://www.youtube.com/watch?v=Eer3YnRx_d8">Cookies License</a></li>
<li><a class="small-text" href="https://www.youtube.com/watch?v=Eer3YnRx_d8">Hail Core</a></li>
</ul>
</div>
</div>
</footer>
<script>
var arrows = document.querySelectorAll('.down-arrow');
var firstSection = document.getElementById('home');
function checkScrollPosition() {
if (window.scrollY >= firstSection.offsetTop) {
arrows.forEach(function(arrow) {
arrow.style.display = 'none';
});
} else {
arrows.forEach(function(arrow) {
arrow.style.display = 'block';
});
}
}
window.addEventListener('load', checkScrollPosition);
window.addEventListener('scroll', checkScrollPosition);
</script>
<script type="module" src="https://ajax.googleapis.com/ajax/libs/model-viewer/3.1.1/model-viewer.min.js"></script>
</body>
</html>