-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathindex.html
58 lines (56 loc) · 1.61 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Jowe Boy's Website</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<div class="row">
<div class="logo">
<img src="assets/logo-new.png" alt="oe_logo">
</div>
<ul class="main-nav">
<li class="active"><a href="">HOME</a></li>
<li><a href="">SERVICES</a></li>
<li><a href="">ABOUT</a></li>
<li><a href="">BLOG</a></li>
<li><a href="">CONTACT</a></li>
<li><a href="">FAQ</a></li>
</ul>
</div>
<div class="hero">
<h1>Ready for Action?</h1>
<div class="button">
<a href="" class="btn btn-one">Watch Video</a>
<a href="" class="btn btn-two">Explore More</a>
</div>
</div>
</header>
<section class="service grid-container">
</section>
<section class="about grid-container">
</section>
<section class="blog grid-container">
</section>
<section class="contact grid-container">
<div class="contact-form grid-item">
<div class="contact-section-header">
<h2>Get in touch with us!</h2>
</div>
<form class="form">
<input type="text" name="fullname" placeholder="Fullname">
<input type="email" name="email" placeholder="Email Address">
<input type="number" name="phonenumber" placeholder="Phone Number">
<textarea class="subject" name="subject" placeholder="Your subject here..."></textarea>
<input class="button" type="submit" value="Submit">
</form>
</div>
<div class="contact-form grid-item">
</div>
</section>
<section class="faq grid-container">
</section>
</body>
</html>