-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (96 loc) · 3.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<script
src="https://kit.fontawesome.com/30beb5b11e.js"
crossorigin="anonymous"
></script>
<link rel="icon" href="images/a-logo.png" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<title>nAscent</title>
</head>
<body>
<div id="under-construction">
<div id="under-construction-wrapper">
<img id="logo" src="images/white.svg" alt="logo" srcset="" />
<h1>WEBSITE UNDER CONSTRUCTION</h1>
<div id="under-construction-buttons">
<a
data-aos="zoom-in"
href="https://www.facebook.com/nascent.agri"
target="_blank"
class="info"
>
<i class="fab fa-facebook"></i>
</a>
</div>
</div>
</div>
<div class="modal-wrap">
<div class="modal-content"></div>
</div>
<div class="wrapper">
<!--Home-->
<section class="home" id="home">
<img src="images/bg.png" alt="" class="home-image" />
<object data="images/logo.svg" type="image/svg+xml" class="home-logo">
<img src="images/objects.png" alt="Logo and Description" />
</object>
</section>
<!--Home-->
<!--Services-->
<section class="services" id="services">
<div class="container">
<div class="section-heading">
<h1>Services</h1>
</div>
<div class="gallery">
<div class="service">
<div class="service-image" data-aos="zoom-in-right">
<img src="images/coffee_mockup.png" alt="Service Image" />
</div>
<p class="service-description" data-aos="zoom-in-left">
Packaging with vivid designs to emphasize branding and identity
of the product.
</p>
</div>
<div class="service">
<p class="service-description" data-aos="zoom-in-right">
Distinct sticker labels for various products to be used with
ease and functionality.
</p>
<div class="service-image" data-aos="zoom-in-left">
<img src="images/sticker_mockup.png" alt="Service Image" />
</div>
</div>
<div class="service">
<div class="service-image" data-aos="zoom-in-right">
<img src="images/video.jpg" alt="Service Image" />
</div>
<p class="service-description" data-aos="zoom-in-left">
On-site/studio photo and video shoots for the creation of
promotional materials
</p>
</div>
</div>
</div>
</section>
<!--Services-->
<!--Footer-->
<footer class="footer">
<div class="up" id="up">
<img src="images/icon.svg" class="filter-white" />
</div>
<p>nAscent © 2022</p>
</footer>
<!--Footer-->
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/main.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
</body>
</html>