-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-us.html
79 lines (69 loc) · 2.4 KB
/
about-us.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - IGETMOVIES</title>
<!-- Include the external CSS file -->
<link rel="stylesheet" href="styles/style0.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<div class="header">
<h1>IGETMOVIES</h1>
<ul class="nav-menu">
<li>
<a href="index.html">
<i class="fas fa-home"></i>
<span class="link-text">Home</span>
</a>
</li>
<li>
<a href="movies.html">
<i class="fas fa-film"></i>
<span class="link-text">Movies</span>
</a>
</li>
<li>
<a href="series.html">
<i class="fas fa-tv"></i>
<span class="link-text">Series</span>
</a>
</li>
<li>
<a href="about-us.html">
<i class="fas fa-info-circle"></i>
<span class="link-text">About</span>
</a>
</li>
<li>
<a href="contact-us.html">
<i class="fas fa-envelope"></i>
<span class="link-text">Contact Us</span>
</a>
</li>
</ul>
<div class="wrapper">
<input class="search" placeholder="Search" type="text">
<button class="search-button">Search</button>
</div>
<div id="searchResults"></div>
</div>
<div class="content">
<h2>Who We Are</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi.</p>
<h2>Our Mission</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi.</p>
<h2>Our Team</h2>
<ul>
<li>John Doe - CEO</li>
<li>Jane Smith - CTO</li>
<li>Robert Johnson - COO</li>
</ul>
</div>
<!-- Footer section -->
<footer class="footer">
<p>© 2023 IGETMOVIES</p>
</footer>
</body>
</html>