-
Notifications
You must be signed in to change notification settings - Fork 0
/
Speaker.html
53 lines (47 loc) · 2.63 KB
/
Speaker.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
<!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>Speakers</title>
<!-- Favicon -->
<link rel="icon" href="images/favicon-speaker.png">
<!--Bootstrap-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous">
</script>
<!-- Google Fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600;700;900&display=swap"
rel="stylesheet">
<!-- CSS-->
<link rel="stylesheet" href="CSS/styles.css">
<!-- FA -->
<script src="https://kit.fontawesome.com/8f861d31b7.js" crossorigin="anonymous"></script>
</head>
<body class="justify-content-center speaker">
<div class="container-fluid speaker-div">
<div class="row row-od-page">
<div class="col-lg-7 p-5">
<h1 class="heading-s">Speakers</h1>
<h3>Bringing the vibe to every party</h3>
<p>A computer speaker connects to a computer to generate sound. The signal used to produce the sound is created by the computer's sound card.
Speakers are made up of a cone, an iron coil, a magnet, and housing (case). When the speaker receives
electrical input from a device, it sends the current through causing it to move back and forth. This
motion then vibrates the outer cone, generating sound waves picked up by our ears.
</p>
<button class="btn btn-dark btn-lg my-2 me-2"><i class="fab fa-amazon fa-1x me-2"></i>Buy Now</button>
<button class="btn btn-outline-primary btn-lg my-2"><i
class="fas fa-shopping-cart me-2"></i>BuyNow</button>
</div>
<div class="col-lg-5 speaker-img-div p-3">
<img src="images/Speakers.jpeg" alt="speaker" class="speaker-img">
</div>
</div>
</div>
<div class="footer align-self-end text-center mt-5 mx-auto"> Code By: <a href="https://hunkypotion3114.github.io/Himanshu-Udupi/">Himanshu Udupi</a></div>
</body>
</html>