-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuy.html
86 lines (86 loc) · 3.04 KB
/
buy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Buy Now — Aiwa</title>
<link rel="stylesheet" href="assets/styles/normalize.css">
<link rel="stylesheet" href="assets/styles/style.css">
</head>
<body>
<!-- Header-->
<header>
<div class="container">
<div class="logo"><a href="/" title="Go Home"><img src="assets/images/logo.png" alt="Aiwa"></a></div>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="buy.html" class="active">The CS-M1</a></li>
<li><a href="reviews.html">Reviews</a></li>
<li><a href="support.html">Support</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</header>
<!-- Heading and a big photo-->
<div class="product-info">
<div class="container">
<h1>Aiwa CS-M1</h1>
</div>
</div>
<!-- Block with some facts about this product-->
<div class="facts">
<div class="container">
<h1>Features</h1>
<div class="flex">
<div class="box-four">
<h2>Compact size</h2>
<p>With dimensions 420 × 76 × 147mm and 2kg weight, Aiwa CS-M1 is a compact and powerful solution for those who needs compact stereo.</p>
</div>
<div class="box-four">
<h2>Micro cassette</h2>
<p>The Aiwa CS-M1 has a micro cassette frequency range of 80 to 10,000 Hz with metal tape, 80 to 8,000 Hz with normal tape.</p>
</div>
<div class="box-four">
<h2>Tape and radio</h2>
<p>Aiwa is offering a portable radio and tape combination. Device have built-in stereo amplifier and speakers and offer two short-wave bands, as well as AM and FM reception.</p>
</div>
</div>
</div>
</div>
<!-- Picture of top view-->
<div class="front-top">
<div class="container"><img src="assets/images/top.png" alt="Aiwa CS-M1 — Top view"></div>
</div>
<!-- Block with some more information about the product-->
<div class="facts">
<div class="container">
<div class="flex">
<div class="box-three">
<h3>Volume and tone</h3>
<p>Volume and tone knobs.</p>
</div>
<div class="box-three">
<h3>Tape controls</h3>
<p>Cassette type switch. Transport controls.</p>
</div>
<div class="box-three">
<h3>Radio controls</h3>
<p>Mono/stereo switch. AM/FM band switch.</p>
</div>
<div class="box-three">
<h3>Sleep timer</h3>
<p>Easy to set sleep timer.</p>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<p>Designed and coded by Ernest Iliiasov #200336022 for COMP1002 class.</p>
<p>Photos by <a href="http://thngs.co">thngs.co</a>. Icons by <a href="http://icons8.com">Icons8.com</a>.</p>
</div>
</footer>
<script src="assets/scripts/main.js"></script>
</body>
</html>