-
Notifications
You must be signed in to change notification settings - Fork 0
/
categories.htm
62 lines (54 loc) · 2.29 KB
/
categories.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Categories</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.css">
</head>
<body>
<div id="topcategories">
<div class="image">
<img src="images/logo.png" alt="" srcset="">
</div>
<nav class="fixed-nav-bar navigation" >
<ul>
<li id="connect">
<a href="connect.htm"><h1>Connect</h1></a>
</li>
<li id="categories">
<a href="categories.htm"><h1 style="opacity: 1;">Categories</h1></a>
</li>
<li id="home" >
<a href="home.htm"><h1 >About Us</h1></a>
</li>
</ul>
</nav>
<div class="ui_card">
<div class="box firstbox">
<div class="imgBox"><img src="images/img1.jpg" alt="background"/></div>
<div class="content">
<div class="first"><h2>Light Highs</h2></div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p><a class="btn btn-defaul btnD one" href="#">Read More</a>
</div>
</div>
<div class="box secondbox">
<div class="imgBox"><img src="images/img2.jpg" alt="background"/></div>
<div class="content">
<div class="second"><h2>Groovy Dose</h2></div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p><a class="btn btn-defaul btnD two" href="#">Read More</a>
</div>
</div>
<div class="box thirdbox">
<div class="imgBox"><img src="images/lonelyplanet2.com_.jpg" alt="background"/></div>
<div class="content">
<div class="third"><h2>Pouring Now</h2></div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p><a class="btn btn-defaul btnD three" href="#">Read More</a>
</div>
</div>
</div>
</div>
</body>
</html>