-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyamaha.html
More file actions
104 lines (90 loc) · 2.63 KB
/
yamaha.html
File metadata and controls
104 lines (90 loc) · 2.63 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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Yamaha Detayları - MotoSite</title>
<link rel="stylesheet" href="style.css" />
<style>
.detay-container {
max-width: 800px;
margin: 100px auto;
background: rgba(255, 255, 255, 0.05);
padding: 20px;
border-radius: 16px;
box-shadow: 0 0 20px rgba(255,255,255,0.1);
z-index: 1;
position: relative;
}
.detay-container img {
width: 100%;
border-radius: 12px;
margin-bottom: 20px;
}
.detay-container h2 {
color: #fff;
}
.detay-container p, .detay-container ul {
color: #ddd;
line-height: 1.6;
}
.btn-back {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background: #ff4a4a;
color: white;
text-decoration: none;
border-radius: 10px;
}
#particles-js {
position: fixed;
width: 100%;
height: 100%;
z-index: 0;
}
</style>
</head>
<body>
<!-- Arka plan efekti -->
<div id="particles-js"></div>
<!-- Navbar -->
<nav class="navbar">
<div class="container">
<h1 class="logo">MotoSite</h1>
<div class="menu-toggle" id="mobile-menu">☰</div>
<ul class="nav-links">
<li><a href="index.html">Ana Sayfa</a></li>
<li><a href="galeri.html">Galeri</a></li>
<li><a href="honda.html">Honda</a></li>
<li><a href="yamaha.html">Yamaha</a></li>
<li><a href="ducati.html">Ducati</a></li>
</ul>
</div>
</nav>
<div class="detay-container">
<img src="motorsiklet.png/MT-07.avif" alt="Yamaha MT-07" />
<h2>Yamaha MT-07</h2>
<p>Yamaha MT-07, hem yeni başlayanlara hem de tecrübeli sürücülere hitap eden orta sınıf bir naked motosiklettir.</p>
<ul>
<li>Motor: 689cc çift silindirli</li>
<li>Güç: 74 beygir</li>
<li>Ağırlık: 184 kg</li>
<li>ABS: Var</li>
<li>Frenler: Çift disk ön, tek disk arka</li>
</ul>
<a href="index.html" class="btn-back">⬅ Ana Sayfaya Dön</a>
</div>
<!-- Arka plan ve menü script -->
<script src="particles.min.js"></script>
<script src="script.js"></script>
<script>
const mobileMenu = document.getElementById("mobile-menu");
const navLinks = document.querySelector(".nav-links");
mobileMenu.addEventListener("click", () => {
navLinks.classList.toggle("active");
});
</script>
<div id="particles-js"></div>
</body>
</html>