-
Notifications
You must be signed in to change notification settings - Fork 0
/
anasayfa.html
120 lines (116 loc) · 3.53 KB
/
anasayfa.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Music Store</title>
<link rel="stylesheet" href="stylee.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light">
<a
class="navbar-brand"
href="anasayfa.html"
style="
font-size: 45px;
color: aliceblue;
background-color: rgb(191, 74, 53);
"
>MUSIC STORE</a
>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<center>
<div
class="navbar-nav"
style="padding: 20px; background-color: rgb(191, 74, 53)"
>
<a
class="nav-link active"
href="anasayfa.html"
style="
font-size: 25px;
color: aliceblue;
left: 470px;
position: absolute;
top: 40px;
"
>Anasayfa
</a>
<a
class="nav-link"
href="ürünlerimiz.html"
style="
font-size: 25px;
color: aliceblue;
left: 670px;
position: absolute;
top: 40px;
"
>
Ürünler
</a>
<a
class="nav-link"
href="hakkımızda.html"
style="
font-size: 25px;
color: aliceblue;
left: 870px;
position: absolute;
top: 40px;
"
>Hakkımızda</a
>
</div>
</center>
</div>
</nav>
</header>
<div class="jumbotron" style="position: absolute; top: 150px; left: 250px">
<h1 class="display-4">Merhaba!</h1>
<p class="lead">
Music Store sanal mağazamıza hoşgeldiniz!Bu sitede çeşitli müzik
aletlerini bulabilirsiniz.Uygun fiyatlarımız ve kaliteli ürünlerimiz
için Ürünler sayfamızı ziyaret edebilirsiniz.
</p>
<hr class="my-4" />
<div>
<h1 style="color: tomato">Sitemizde bulunan müzik aletleri</h1>
<ul>
<li>Gitar</li>
<li>Keman</li>
<li>Piyano</li>
</ul>
<center>
<a class="btn btn-primary btn-lg" href="hakkımızda.html" role="button"
>Hakkımızda</a
>
</center>
</div>
</div>
</body>
</html>