-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnew.html
112 lines (102 loc) · 4.21 KB
/
new.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
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
<!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>Thapar Art Gallery</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap"
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=Raleway:wght@100&display=swap"
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=Alfa+Slab+One&display=swap"
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=Nunito:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style2.css" />
</head>
<body>
<!-- ***********HOME PAGE TITLE********* -->
<section class="homepage">
<h2>EXPLORE</h2>
<h3>THE</h3>
<h4>COLLECTION</h4>
</section>
<!-- **************NAVIGATION BAR*************** -->
<nav>
<a href="#" class="logo">Bug Smashers</a>
<div class="link">
<a href="#">Home</a>
<a href="#">Our Gallery</a>
<a href="#">Services</a>
<a href="#">About</a>
<a href="#">Contact</a>
<a href="signup.html">Sign Up/In</a>
</div>
</nav>
<section class="page2">
<!--FLEX-BOX CONATINER***************** -->
<div class="container">
<div class="box" id="box-1"><button>Explore</button></div>
<div class="box" id="box-2"><button>Explore</button></div>
<div class="box" id="box-3"><button>Explore</button></div>
<div class="box" id="box-4"><button>Explore</button></div>
<div class="box" id="box-5"><button>Explore</button></div>
<div class="box" id="box-6"><button>Explore</button></div>
</div>
</section>
<section class="page3">
<!-- **********PAGE-3 TITLE************ -->
<h1>
Don't be shy, ask the mak
<br />
team!
</h1>
<!-- *****************CONTACT DETAILS**************** -->
<div class="contact-container">
<div class="contact-item">
<div class="cimg-1"></div>
<p class="chatboxall">Let's have a Chat</p>
<a href="#" class="chatbox">Start a Live Chat</a>
</div>
<div class="contact-item">
<div class="cimg-2"></div>
<p class="chatboxall">Drop us a line</p>
<a href="#" class="chatbox">Submit a Request</a>
</div>
<div class="contact-item">
<div class="cimg-3"></div>
<p class="chatboxall">Get Connected</p>
<a href="#" class="chatbox">Tweet Us</a>
</div>
</div>
</section>
<!-- ******************FOOTER*********************** -->
<footer>
<div class="links">
<a target="_blank" href="https://www.linkedin.com/in/louisbarsiwal/"><i class="fa fa-linkedin-square fa-lg" aria-hidden="true"></i></a>
<a target="_blank" href="#"><i class="fa fa-twitter-square fa-lg" aria-hidden="true"></i></a>
<a target="_blank" href="https://github.com/louisbarsiwal"><i class="fa fa-github-square fa-lg" aria-hidden="true"></i></a>
<a target="_blank" href="https://codepen.io/louis_barsiwal"><i class="fa fa-codepen fa-lg" aria-hidden="true"></i> </a>
</div>
<!-- ******************CREDIT************* -->
<h2>© Copyright  |  Created by Louis Barsiwal</h2>
</footer>
</body>
</html>