forked from shubha987/tUneBOx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
instruments.html
46 lines (46 loc) · 2 KB
/
instruments.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
<!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>tUneBOx: Follow your Passion</title>
<link rel="stylesheet" href="Styles1.css">
<!-- <link rel="stylesheet" media="screen and (max-width:1170px)" href="phone.css"> -->
</head>
<body>
<section id="home">
<nav id="navbar">
<div id="logo">
<h1 id="logo1">tUneBOx</h1>
</div>
<ul>
<li class="item"><a href="/" class="active">Home</a></li>
<li class="item"><a href="/instruments">Instruments</a></li>
<li class="item"><a href="/about">About</a></li>
<li class="item"><a href="/blog">Blog</a></li>
<li class="item"><a href="/contact">Contact Us</a></li>
</ul>
</nav>
<div id="services-container">
<div id="services">
<div class="box">
<img src="images/guitar.png" alt="">
<p class="center">Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<button id="click1">CLICK</button>
</div>
<div class="box">
<img src="images/notes.png" alt="">
<p class="center">Lorem ipsum dolor sit amet consectetur </p>
<button id="click1">CLICK</button>
</div>
<div class="box">
<img src="images/community.jpg" alt="">
<p class="center">Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<button id="click1">JOIN</button>
</div>
</div>
</div>
</section>
</body>
</html>