-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (84 loc) · 3.37 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
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta content="ie=edge" http-equiv="X-UA-Compatible"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,700,1,0"/>
<link rel="stylesheet" href="style.css"/>
<title>Mustermann E-Commerce</title>
<script src="index.mjs" type="module"></script>
</head>
<body>
<!-- header start -->
<header class="nav">
<nav class="container">
<ul class="nav-links">
<li class="nav-item logo">
<a href="index.html">Mustermann</a>
<i class="icon material-symbols-outlined">shopping_cart</i>
</li>
<li class="nav-item">
<a href="auth/login.html" id="loginButton">Login</a>
</li>
<li id="cart" class="nav-item">
<i class="material-symbols-outlined">shopping_basket</i>
<span id="basket"></span>
<a id="cartName"></a>
</li>
<li id="logoutButton" class="nav-item">
<a href="index.html">Logout</a>
</li>
</ul>
</nav>
</header>
<!-- header end -->
<!-- main start -->
<main class="container products">
<h1 class="heading">Mustermanns E-Commerce</h1>
<nav id="categories" class="categories">
<input name="category" id="cat-all" checked type="radio" value="">
<label for="cat-all">Alle</label>
<input name="category" id="cat-mob" type="radio" value="t-shirt">
<label for="cat-mob">T-Shirts</label>
<input name="category" id="cat-lap" type="radio" value="pullover">
<label for="cat-lap">Pullovers</label>
</nav>
<div id="products" class="product-list-container"></div>
</main>
<!-- main end -->
<!-- footer start -->
<footer class="footer">
<div class="container">
<div class="footer-column">
<div class="footer-social-text">
<p>Folge uns auf:</p>
</div>
<ul class="footer-social-icons">
<li><a href="#"><img src="social-icons/facebook.svg" alt="Facebook" width="16" height="16"></a></li>
<li><a href="#"><img src="social-icons/instagram.svg" alt="Instagram" width="16" height="16"></a></li>
<li><a href="#"><img src="social-icons/tumblr.svg" alt="Tumblr" width="16" height="16"></a></li>
<li><a href="#"><img src="social-icons/twitter.svg" alt="Twitter" width="16" height="16"></a></li>
</ul>
</div>
<p class="footer-column">
Ruf uns kostenlos an: <a href="tel:+4911111111111">+49 11111 111111</a>
</p>
<form class="footer-column" onsubmit="event.preventDefault()">
<label for="newsletter-mail">Registriere dich für Angebote:</label>
<input name="mail" id="newsletter-mail" class="footer-input" aria-label="Email"
placeholder="[email protected]"
type="email"/>
</form>
<div class="footer-copyright">
<p>
Entwickelt von Anton Pieper | Copyright 2023
</p>
</div>
</div>
</footer>
<!-- footer end -->
</body>
</html>