-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
195 lines (175 loc) · 7.3 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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css?family=Cardo:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Mogra" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/style-home.css">
<title>Home Page</title>
</head>
<body>
<!-- Start Header -->
<header>
<nav class="navBar" id="navbar">
<ul class="logo">
<li>
<a href="./index.html">Company Logo</a>
</li>
</ul>
<ul class="navUl">
<li class="navLi">
<a href="#" id="active">Home</a>
</li>
<li class="navLi">
<a href="#about">About</a>
</li>
<li class="navLi">
<a href="#ourWork">Our Works</a>
</li>
<li class="navLi">
<a href="#gallery">Gallery</a>
</li>
<li class="navLi">
<a href="#ourTeam">Meet Our Team</a>
</li>
<li class="navLi">
<a href="#contactUs">Contact us</a>
</li>
</ul>
</nav>
<div class="banner overlay ">
<p class="marginFix p1">The title goes here</p>
</div>
</header>
<!-- End of Header -->
<!-- Starting main content -->
<main>
<div class="gallery2">
<!--
=============
ABOUT SECTION
=============
-->
<div class="bg1" id="about">
<p class="fixText">FIRST TEXT</p>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Facilis quidem alias incidunt?</p>
</div>
<!--
=============
OUR WORK SECTION
=============
-->
<div class="bg2" id="ourWork">
<p class="fixText">SECOND TEXT</p>
<p>Browse some of our works</p>
<p class="SeeMore">Browse</p>
</div>
<!--
=============
Gallery SECTION
=============
-->
<div class="bg3" id="gallery">
<p class="fixText">THIRD TEXT</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Accusantium odio excepturi quo porro ipsam! Laboriosam aliquid similique doloribus hic. Adipisci quae atque natus facere beatae repudiandae facilis eum ex fugiat? Accusantium eum qui, sit quidem
iusto laboriosam nobis placeat,
</p>
</div>
<!--
=============
MEET OUR TEAM SECTION
=============
-->
<div class="bg4" id="ourTeam">
<p class="fixText">FORTH TEXT</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam ipsam assumenda odit voluptatem. Vero tenetur perferendis placeat quibusdam quod sequi, molestias quam unde qui quasi cupiditate repellendus officiis alias architecto.
</p>
</div>
<p class="fifthText">FIFTH TEXT</p>
<!--
=============
CONTACT US SECTION
=============
-->
<section>
<form action="" class="bg5" id="contactUs">
<div>
<label for="title" class="labelText">Title:</label>
<select name="titleName" id="title">
<option label="Please select your title"></option>
<option disabled>------------------------------</option>
<option value="mr">Mr.</option>
<option value="mrs">Mr.</option>
<option value="miss">Mrs.</option>
<option value="ms">Ms.</option>
<option value="dr">Dr.</option>
</select>
</div>
<div>
<label for="fName" class="labelText">First name:<span style="color: red;">*</span></label>
<input type="text" name="firstName" id="fName" placeholder="ex. Kareem" maxlength="20">
</div>
<div>
<label for="lName" class="labelText">Last name:<span style="color: red;">*</span></label>
<input type="text" name="lastName" id="lName" placeholder="ex. Alrmanazi" maxlength="50">
</div>
<!-- EMAIL label-->
<div>
<label for="email" class="labelText">E-Mail:<span style="color: red;">*</span></label>
<input type="email" id="email" name="eMail" placeholder="ex. [email protected]" maxlength="100" required style="width: 200px">
</div>
<div style="margin-top: 40px;">
<label for="foundUs" class="labelText">Please write your message:</label>
</div>
<div>
<textarea name="aboutUs" id="foundUs" cols="22" rows="5"></textarea>
</div>
<div>
<input type="submit" value="Send a message">
</div>
<div class="fieldreq"><span>Fields marked with an <span style="color: red;">*</span> are required.</span>
</div>
</form>
</section>
</div>
<div class="hidden" id="topButton">
<div class="top">
<a href="#" class="fas fa-chevron-circle-up">
</a>
</div>
</div>
</main>
<!-- End of main -->
<!-- Start of Footer -->
<footer>
<div>
©2018-2021 All Right Reserved.
</div>
<br>
<span>
<i>
<a href="https://www.facebook.com/kemo.alkaser" class="fab fa-facebook-square" target="_blank"></a>
</i>
<i>
<a href="https://twitter.com/KareemKemo12" target="_blank" class="fab fa-twitter-square"></a>
</i>
<i>
<a href="https://www.instagram.com/kareem_armnazi/" target="_blank" class="fab fa-instagram"></a>
</i>
<i>
<a href="https://my.playstation.com/profile/Kareem19900" target="_blank" class="fab fa-playstation"></a>
<i>
</span>
</footer>
<!-- End of Footer -->
<script src="./js/script.js"></script>
</body>
</html>