-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
164 lines (157 loc) · 4.92 KB
/
index.html
File metadata and controls
164 lines (157 loc) · 4.92 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!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" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/style.css" />
<title>Alibay Buy and Sell</title>
</head>
<body id="home">
<!-- Navbar -->
<nav id="navbar">
<h1 class="logo">
<span class="text-primary"> <i class="fas fa-book-open"></i> JNJ</span>
Alibay Market
</h1>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#login">Login</a></li>
<li><a href="#cart">Cart</a></li>
<li><a href="#register">Register</a></li>
</ul>
</nav>
<!-- Header: Showcase -->
<header id="showcase">
<div class="showcase-content">
<a href="#what" class="btn">About</a>
<h1 class="l-heading">
Authentic Designer Watches
</h1>
<div>
<input class="bar1" type="text" />
<input class="bar2" type="submit" value="Search" />
</div>
<br />
<br /><br />
<br /><br />
</div>
</header>
<!-- Section: What We Do -->
<section id="what" class="bg-light py-1">
<div class="container">
<h2 class="m-heading text-center">
<span class="text-primary">What</span> We Do
</h2>
<div class="items">
<div class="item">
<i class="fas fa-university fa-2x"></i>
<div>
<h3>Buy</h3>
</div>
</div>
<div class="item">
<i class="fas fa-book-reader fa-2x"></i>
<div>
<h3>Sell</h3>
</div>
</div>
<div class="item">
<i class="fas fa-pencil-alt fa-2x"></i>
<div>
<h3>Appraise</h3>
</div>
</div>
</div>
</div>
</section>
<!-- Section: Who We Are -->
<section id="who">
<div class="who-img"></div>
<div class="who-text bg-dark p-2">
<h2 class="m-heading"><span class="text-primary">Who</span> We Are</h2>
<p>
Watches.com® 1250 Rue St-Catherine Montreal, QC H4N 2R5 CAN
</p>
<p>
800.888.8888 [email protected] Business Hours: Mon - Wed, 10am to 6pm
Thu-Fri 10am to 9pm Sat-Sun Closed
</p>
<h3>Our Team</h3>
<ul class="list">
<li>Nirojan Karun: CEO</li>
<li>James Zulkarnain: CFO</li>
<li>Jeffrey Garner: Lead Designer</li>
</ul>
</div>
</section>
<!-- Section: Clients -->
<section id="clients" class="py-1">
<div class="container">
<h2 class="m-heading text-center">
<span class="text-primary">Our</span> Clients
</h2>
<div class="items py-1">
<div><img src="./img/logos/logo1.png" alt="Client" /></div>
<div><img src="./img/logos/logo2.png" alt="Client" /></div>
<div><img src="./img/logos/logo3.png" alt="Client" /></div>
<div><img src="./img/logos/logo4.png" alt="Client" /></div>
<div><img src="./img/logos/logo5.png" alt="Client" /></div>
</div>
</div>
</section>
<!-- Section: Contact -->
<section id="contact">
<div class="contact-form bg-primary p-2">
<h2 class="m-heading">Contact Us</h2>
<p>Please use the form below to contact us</p>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" id="name" placeholder="Enter Name" />
</div>
<div class="form-group">
<label for="email">Email</label>
<input
type="email"
name="email"
id="email"
placeholder="Enter Email"
/>
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input
type="text"
name="phone"
id="phone"
placeholder="Enter Phone Number"
/>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea
name="message"
id="message"
placeholder="Enter Message"
></textarea>
</div>
<input type="submit" value="Send" class="btn btn-dark" />
</form>
</div>
<div class="map"></div>
</section>
<!-- Footer -->
<footer id="main-footer" class="bg-dark text-center py-1">
<div class="container">
<p>Copyright © 2019, Concordia Bootcamp, All Rights Reserved</p>
</div>
</footer>
</body>
</html>