-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (115 loc) · 4.52 KB
/
index.html
File metadata and controls
115 lines (115 loc) · 4.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ABN Design</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header id="header">
<div class="header-inner">
<img class="logo" src="Resources/ABNLogo.png" alt="abn navigation logo">
<div id="hbg-menu">
<div class="hbg-line"></div>
<div class="hbg-line"></div>
<div class="hbg-line"></div>
</div>
<nav id="navbar" class="nav-bar">
<ul class="navbar-inner">
<li><a class="nav-links" href="index.html">Home</a></li>
<li><a class="nav-links" href="work.html">Work</a></li>
<li><a class="nav-links" href="services.html">Services</a></li>
<li><a class="nav-links" href="about.html">About Us</a></li>
</ul>
</nav>
</div>
</header>
<section id="cover">
<div id="cover-area">
<h1>Design<br><span id="coverTyped"></span></h1>
<img id="mountain" src="Resources/mountain.png" alt="mountain background">
<div id="ask-us-btn">
<p>Ask us anything</p>
<img src="Resources/ArrowWhite.png" alt="white downwards arrow">
</div>
</div>
</section>
<section id="aboutUsSec">
<div id="aboutUsSec-container">
<div id="aboutUs-pSec">
<h2>What we're all about</h2>
<p>We're a creative studio working with clients nationwide and innovating fresh designs to make brands stand out among competition. Our main goal is to elevate brands to new heights and help start-ups reach their goals.</p>
<div id="aboutUsBtn">
<a href="about.html">Find out more</a>
</div>
</div>
<img id="laptop-img" class="bounce1" src="Resources/laptop-vector.png" alt="desktop with laptop image">
</div>
</section>
<section id="servicesSec">
<div id="servicesSec-container">
<h3>Services</h3>
<div id="fourSContainer">
<div class="serviceBox">
<img src="Resources/LogoBID.jpg" alt="sketchbook image">
<div class="serviceOverlay">
<h6>Branding &<br>Logo Design</h6>
</div>
</div>
<div class="serviceBox">
<img src="Resources/color-patterns.jpg" alt="colour palette image">
<div class="serviceOverlay">
<h6>Print Design</h6>
</div>
</div>
<div class="serviceBox">
<img id="service-video-img" src="Resources/videography-image.jpg" alt="video camera image">
<div class="serviceOverlay">
<h6>Videography</h6>
</div>
</div>
<div class="serviceBox">
<img src="Resources/web-service.jpg" alt="picture of computer with website code">
<div class="serviceOverlay">
<h6>Web Design &<br>Development</h6>
</div>
</div>
</div>
</div>
</section>
<section id="contactSec">
<div id="contact-container">
<div id="contactHead">
<h2>Get in touch</h2>
</div>
<form>
<input name="name" type="text" class="formInput" placeholder="Name" />
<input name="email" type="text" class="formInput" placeholder="Email" />
<input type="tel" class="formInput" id="phone" name="phone" pattern="[0-9]{3}-[0-9]{2}-[0-9]{3}" placeholder="Phone Number" />
<textarea name="text" class="formInput" placeholder="Enquiry"></textarea>
<input id="formSubmit" type="submit" value="Submit"/>
</form>
</div>
</section>
<section id="clientLogoSec">
<div>
<img id="ajlogo" src="Resources/AJLogo.png" alt="Al Jumeirah logo">
<img id="esqlogo" src="Resources/EsquiresLOGO.png" alt="Esquires Coffee logo">
<img id="tubologo" src="Resources/TUBOLogo.png" alt="Tubo logo">
<img id="ktchnlogo" src="Resources/ktchnLogo.png" alt="The Ktchn logo">
</div>
</section>
<footer>
<div id="footerContainer">
<div id="footerDetails">
<p>07413 780 172</p>
<p>abu_navsa@outlook.com</p>
<p>ABN Design ©</p>
</div>
<img class="footerSocial" src="Resources/InstaIcon.png" alt="instagram logo">
</div>
</footer>
<script src="js/scripts.js"></script>
</body>
</html>