-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (60 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>bcd guitar shop</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<header>
<a href="index.html" target="_top">
<img id="main_logo" alt="bcd guitar shop logo" src="img/guitar_logo.webp">
<h1>bcd guitar shop</h1>
</a>
<div class="spacer"></div>
<div id="header_contact">
<a id="mail" href="mailto:[email protected]">[email protected]</a>
<span id="phone">+43 665 12 345 67</span>
</div>
</header>
<nav>
<div id="menuButton" class="menuButton fa-stack fa-2x">
<i class="fa-regular fa-circle fa-stack-2x"></i>
<i class="fa-solid fa-bars fa-stack-1x"></i>
</div>
<ul id="menuLinkContainer">
<li class="menuLink"><a style="color: #FFF" href="">news</a></li>
<li class="menuLink"><a href="html/shop.html">shop</a></li>
<li class="menuLink menu_item">contact
<ul id="sub_nav">
<li class="menuLink"><a href="html/locations.html">where to find us</a></li>
<li class="menuLink"><a href="html/imprint.html">imprint</a></li>
</ul>
</li>
</ul>
<div class="spacer"></div>
</nav>
<main>
<section id="welcome">
<h2>Welcome to bcd guitar shop</h2>
<p>Our website is currently under construction. <br>
Please feel free to browse our awesome selection of finest string instruments!<br><br>
→ <a href="html/shop.html" target="_top">go to shop</a> ←
</p>
<figure>
<img alt="image of our shop's interior" title="image of our shop's interior" src="img/index-bild.webp">
<figcaption>bcd guitar shop's interior</figcaption>
</figure>
</section>
<aside>
</aside>
</main>
<footer>
<div id="footer-container">
© 2023
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>