-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprodukt1.html
More file actions
224 lines (221 loc) · 11.9 KB
/
produkt1.html
File metadata and controls
224 lines (221 loc) · 11.9 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book & Dice</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.0.0/fonts/remixicon.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/flickity.min.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div id="notify"></div>
<header>
<div class="header__top-bar">
<p class="small"><i class="ri-truck-line"></i> Alltid fri frakt</p>
</div>
<div class="header__main">
<div class="header__main--flex container--l">
<a href="index.html" class="header__logo--link"><img class="header--logo" width="200" height="82.89" src="./img/bd-logo-yellow.svg" alt="Book & Dice logo"></a>
<!-- Navigation -->
<nav class="nav" id="nav">
<!-- Close Menu Button -->
<button class="menu__btn close" id="close-menu" aria-label="Stäng meny">
<span class="menu__icon--close">
<span class="bars cross1"></span>
<span class="bars cross2"></span>
</span>
</button>
<!-- Navigation List -->
<ul class="nav__list">
<li class="nav__item"><a href="index.html" class="nav__link">Hem</a></li>
<li class="nav__item"><a href="books.html" class="nav__link">Böcker</a></li>
<li class="nav__item"><a href="games.html" class="nav__link">Spel</a></li>
<li class="nav__item"><a href="puzzles.html" class="nav__link">Pussel</a></li>
<li class="nav__item"><a href="about.html" class="nav__link">Om oss</a></li>
</ul>
</nav>
<div class="header__main--icon-wrapper">
<!-- Menu Button -->
<button class="menu__btn open" id="open-menu" aria-label="Öppna meny">
<span class="menu__icon--open">
<span class="bars"></span>
<span class="bars"></span>
<span class="bars"></span>
</span>
</button>
<!-- Cart Icon -->
<a href="./checkout.html" class="header__main--cart">
<i class="ri-shopping-cart-2-line"></i>
<span class="items-in-basket smallest"></span>
</a>
</div>
</div>
</div>
</header>
<main>
<!-- Breadcrumbs -->
<div class="breadcrumbs container--l">
<p class="breadcrumbs__text small">
<a href="index.html"><span>Hem</span></a> / <a href="books.html"><span>Böcker</span></a> / <span>Projektledning</span>
</p>
</div>
<!-- Main product -->
<section class="main-product container--l">
<div class="main-product__images">
<div>
<div class="main-product__carousel" data-flickity='{"cellAlign": "center", "contain": true, "pageDots": false, "prevNextButtons": false, "wrapAround": true}'>
<div class="main-product__carousel--image"><picture>
<!-- load webp in different sizes if browser supports it -->
<source type="image/webp" srcset="./img/produkt-1.webp">
<!-- fallback on original src. -->
<img srcset="./img/produkt-1.jpg"
src="./img/produkt-1.jpg"
alt="Projektledning omslag bok"
class="product__image"
width="430"
height="516">
</picture></div>
<div class="main-product__carousel--image"><picture>
<!-- load webp in different sizes if browser supports it -->
<source type="image/webp" srcset="./img/produkt-1-2.webp">
<!-- fallback on original src. -->
<img srcset="./img/produkt-1-2.jpg"
src="./img/produkt-1-2.jpg"
alt="Projektledning baksida bok"
class="product__image"
width="430"
height="516">
</picture></div>
</div>
</div>
<div class="carousel-nav" data-flickity='{ "asNavFor": ".main-product__carousel", "cellAlign": "left", "prevNextButtons": false, "contain": true,"pageDots": false, "wrapAround": false, "draggable": false }'>
<img class="main-product__gallery--image" src="./img/produkt-1-xs.jpg" alt="Projektledning omslag bok" width="129" height="154">
<img class="main-product__gallery--image" src="./img/produkt-1-2-xs.jpg" alt="Projektledning baksida bok" width="129" height="154">
</div>
</div>
<!-- Product info -->
<div class="main-product__info">
<h1>Projektledning</h1>
<hr class="hr--gray--small--left">
<div class="main-product__price">
<p class="main-product__price--original">599 SEK</p>
<p class="main-product__price--current"><span>400</span> SEK</p>
</div>
<p class="main-product__info--text">Projektledning tar ett helhetsgrepp på området projektledning och riktar sig till alla som styr och leder projekt, oavsett bransch och organisation. Boken behandlar projektmetodiken och ledarskapet på ett tydligt och begripligt sätt, vilket gör den lätt att använda som lärobok på högskolor, universitet och affärsskolor, handbok vid praktiskt projektarbete och strategisk portföljhantering på ledningsnivå samt vid certifieringar.Projektledning är ett område som hela tiden utvecklas.</p>
<div class="main-product__input">
<!-- <input type="number" aria-label="antal" name="antal" id="antal" value="1"> -->
<button class="button--primary--blue" onclick="addToBasket(this, '1-001','Projektledning', 400, './img/produkt-1-xs.jpg', true)"><i class="ri-shopping-cart-2-line"></i> Lägg i kundvagnen</button>
</div>
<div class="main-product__payment-badge">
<p>Betalningsalternativ</p>
<img src="./img/trustbadge.png" height="26" width="286" class="trustbadge" alt="Betalningsalternativ">
</div>
<div class="main-product__meta">
<p><strong class="main-product__meta--title">Författare:</strong> Bo Tonnquist</p>
<p><strong class="main-product__meta--title">ISBN:</strong> 9789152360804</p>
<p><strong class="main-product__meta--title">Utgivningsår:</strong> 2021</p>
</div>
</div>
</section>
<!-- Products -->
<hr class="hr--gray">
<section class="products container--l">
<h2>Liknande produkter</h2>
<hr>
<div class="products__container">
<!-- Product 1 -->
<div class="product-card">
<div class="product-card__image--box">
<a href="./produkt1.html"><picture>
<!-- load webp in different sizes if browser supports it -->
<source type="image/webp" srcset="./img/produkt-1.webp" height="350" width="292">
<!-- fallback on original src. -->
<img srcset="./img/produkt-1.jpg"
src="./img/produkt-1.jpg"
alt="Projektledning bok"
class="product__image"
height="350"
width="292" >
</picture></a>
</div>
<div class="product-card__info">
<div class="product-card__text">
<a href="./books.html" class="product-card__title--tag small">Böcker</a>
<a href="./produkt1.html" class="product-card__text--link"><p class="product-card__title-name">Projektledning</p></a>
</div>
</div>
<div class="product-card__price">
<p class="product-card__price--original small">599 SEK</p>
<p class="product-card__price--current"><span>400</span> SEK</p>
</div>
</div>
<!-- Product 2 -->
<div class="product-card">
<div class="product-card__image--box">
<a href="./produkt2.html"><picture>
<!-- load webp in different sizes if browser supports it -->
<source type="image/webp" srcset="./img/produkt-2.webp">
<!-- fallback on original src. -->
<img srcset="./img/produkt-2.jpg"
src="./img/produkt-2.jpg"
alt="The non designers design book"
class="product__image"
height="350"
width="292" >
</picture></a>
</div>
<div class="product-card__info">
<div class="product-card__text">
<a href="./books.html" class="product-card__title--tag small">Böcker</a>
<a href="./produkt2.html" class="product-card__text--link"><p class="product-card__title-name">The non designers design book</p></a>
</div>
</div>
<div class="product-card__price">
<p class="product-card__price--current"><span>270</span> SEK</p>
</div>
</div>
</div>
</section>
<hr class="hr--gray">
<section class="cta">
<div class="container--l">
<h2>Missa inte en nyhet</h2>
<p class="cta__text">Prenumerera på vårt nyhetsbrev för att vara först med de senaste nyheterna och ta del av de bästa erbjudandena.</p>
<form id="newsletter__form" action="#">
<label for="email">E-postadress:</label>
<input type="email" name="Epostadress" id="email">
<button type="submit" class="button--primary--blue">Prenumerera</button>
</form>
</div>
</section>
</main>
<footer>
<div class="container--l grid--two-column">
<div class="footer__contact">
<h2 class="footer__heading">Kontakt</h2>
<p>Book & Dice</p>
<p>SE-795 70 Vikarbyn</p>
<p>Telefon: <a href="tel:+46000000000">+46000000000</a></p>
<p>E-post: <a href="mailto:info@bookdice.se">info@bookdice.se</a></p>
</div>
<div class="footer__info">
<h2 class="footer__heading">Länkar</h2>
<ul class="footer__info--list">
<li><a href="./about.html">Om oss</a></li>
</ul>
</div>
</div>
</footer>
<script src="./js/flickity.pkgd.min.js"></script>
<script src="./js/webshop.js"></script>
<script src="js/main.js"></script>
</body>
</html>