Skip to content

Commit 04e2001

Browse files
authored
Adds basic html structure to aboutsus and contactus pages
1 parent f27dd73 commit 04e2001

File tree

2 files changed

+69
-0
lines changed

2 files changed

+69
-0
lines changed

resources/html/aboutus.html

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>About Us</title>
8+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
9+
<link rel="stylesheet" href="../css/aboutus.css" />
10+
</head>
11+
<body>
12+
<header>
13+
<!-- header code goes here -->
14+
<nav class="nav">
15+
<!-- navbar code goes here -->
16+
</nav>
17+
</header>
18+
<div class="container1">
19+
<!-- about easysell and our ethos goes here -->
20+
</div>
21+
</div>
22+
<div class="container2">
23+
<!-- satisfied customer goes here -->
24+
</div>
25+
<div class="container3">
26+
<!-- meet the team goes here -->
27+
</div>
28+
<div class="container4">
29+
<!-- faq goes here -->
30+
</div>
31+
<footer>
32+
<!-- footer code goes here -->
33+
</footer>
34+
</body>
35+
36+
</html>

resources/html/contactus.html

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<title>About Us</title>
9+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
10+
<link rel="stylesheet" href="../css/contactus.css" />
11+
</head>
12+
13+
<body>
14+
<header>
15+
<!-- header code goes here -->
16+
<nav class="nav">
17+
<!-- navbar code goes here -->
18+
</nav>
19+
</header>
20+
<div class="container1">
21+
<!-- contact form goes here -->
22+
</div>
23+
<div class="container2">
24+
<!-- chat the sales goes here -->
25+
</div>
26+
<div class="container3">
27+
<!-- faq goes here -->
28+
</div>
29+
<footer>
30+
<!-- footer code goes here -->
31+
</footer>
32+
</body>
33+
</html>

0 commit comments

Comments
 (0)