-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
135 lines (128 loc) · 6.95 KB
/
services.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NAI Production</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="all.css">
</head>
<body id="services">
<!-- Navbar Section -->
<nav class="navbar">
<div class="navbar-container">
<a href="#home"><img id="logo" src="nai final white.png" alt="" class="image"></a>
<div class="navbar-toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar-menu">
<li class="navbar-item">
<a data-active="index" href="index.html" class="navbar-links" id="index">Home</a>
</li>
<li class="navbar-item">
<a data-active="about" href="about.html" class="navbar-links" id="about">About</a>
</li>
<li class="navbar-item">
<a data-active="services" href="services.html" class="navbar-links" id="services">Services</a>
</li>
<li class="navbar-item">
<a data-active="contact" href="contact.html" class="navbar-links" id="contact">Contact Us</a>
</li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<div class="hero" id="home">
<div class="hero-container">
<h1 class="hero-heading">About NAI Production</h1>
<p class="hero-description">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy.
</p>
<button class="main-btn"><a href="#">Know more</a></button>
</div>
</div>
<!-- Services Section -->
<div class="services" id="services">
<h1>Our Services</h1>
<div class="services-wrapper">
<div class="services-card">
<h2>Videography</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<div class="services-btn"><button>Know more</button></div>
</div>
<div class="services-card">
<h2>Photography</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<div class="services-btn"><button>Know more</button></div>
</div>
<div class="services-card">
<h2>Post Prodution</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<div class="services-btn"><button>Know more</button></div>
</div>
<div class="services-card">
<h2>VFX</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<div class="services-btn"><button>Know more</button></div>
</div>
</div>
</div>
<!-- Footer Section -->
<div class="footer-container">
<div class="footer-links">
<div class="footer-link-wrapper">
<div class="footer-link-items">
<h2>About Us</h2>
<a href="/contact-us">Production</a> <a href="/">Testinomials</a>
<a href="/">careers</a> <a href="/">Terms of Services</a>
</div>
<div class="footer-link-items">
<h2>Contact Us</h2>
<a href="/">Contact</a> <a href="/">Support</a>
<a href="/">Destinations</a>
</div>
</div>
<div class="footer-link-wrapper">
<div class="footer-link-items">
<h2>Production</h2>
<a href="/">Videography</a> <a href="/">Photography</a>
<a href="/">Editing</a>
</div>
<div class="footer-link-items">
<h2>Social Media</h2>
<a href="/">Instagram</a> <a href="/">Facebook</a>
<a href="/">Youtube</a> <a href="/">LinkedIn</a>
</div>
</div>
</div>
<section class="social-media">
<div class="social-media-wrap">
<div class="footer-logo">
<a href="/" id="footer-logo">NAI Production</a>
</div>
<p class="website-rights">© NAI Production 2022. All rights reserved</p>
<div class="social-icons">
<a href="/" class="social-icon-link" target="_blank">
<i class="fab fa-facebook"></i>
</a>
<div class="social-icons">
<a href="/" class="social-icon-link">
<i class="fab fa-instagram"></i>
</a>
<div class="social-icons">
<a href="/" class="social-icon-link">
<i class="fab fa-youtube"></i>
</a>
<div class="social-icons">
<a href="/" class="social-icon-link">
<i class="fab fa-LinkedIn"></i>
</a>
</div>
</div>
</section>
</div>
<script src="app.js"></script>
</body>
</html>