-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
177 lines (164 loc) · 5.78 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
<!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" />
<title>Chintan Boghara | Landing Page</title>
<!-- ==== STYLE.CSS ==== -->
<link rel="stylesheet" href="./css/style.css" />
<!-- ==== REMIXICON CDN ==== -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<!-- ==== ANIMATE ON SCROLL CSS CDN ==== -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
</head>
<body>
<!-- ==== HEADER ==== -->
<header class="container header">
<!-- ==== NAVBAR ==== -->
<nav class="nav">
<div class="logo">
<h2>HeyBeast.</h2>
</div>
<div class="nav_menu" id="nav_menu">
<button class="close_btn" id="close_btn">
<i class="ri-close-fill"></i>
</button>
<ul class="nav_menu_list">
<li class="nav_menu_item">
<a href="#" class="nav_menu_link">account</a>
</li>
<li class="nav_menu_item">
<a href="#" class="nav_menu_link">about</a>
</li>
<li class="nav_menu_item">
<a href="#" class="nav_menu_link">service</a>
</li>
<li class="nav_menu_item">
<a href="#" class="nav_menu_link">contact</a>
</li>
</ul>
</div>
<button class="toggle_btn" id="toggle_btn">
<i class="ri-menu-line"></i>
</button>
</nav>
</header>
<section class="wrapper">
<div class="container">
<div class="grid-cols-2">
<div class="grid-item-1">
<h1 class="main-heading">
Welcome to <span>HeyBeast.</span>
<br />
Develop anything.
</h1>
<p class="info-text">
Build a beautiful, modern website with flexible components built
from scratch.
</p>
<div class="btn_wrapper">
<button class="btn view_more_btn">
view all pages <i class="ri-arrow-right-line"></i>
</button>
<button class="btn documentation_btn">documentation</button>
</div>
</div>
<div class="grid-item-2">
<div class="team_img_wrapper">
<img src="./img/team.svg" alt="team-img" />
</div>
</div>
</div>
</div>
</section>
<section class="wrapper">
<div class="container" data-aos="fade-up" data-aos-duration="1000">
<div class="grid-cols-3">
<div class="grid-col-item">
<div class="icon">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
/>
</svg>
</div>
<div class="featured_info">
<span class="title">Built for developers </span>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempore
ratione facilis animi voluptas exercitationem molestiae.
</p>
</div>
</div>
<div class="grid-col-item">
<div class="icon">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 14v6m-3-3h6M6 10h2a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v2a2 2 0 002 2zm10 0h2a2 2 0 002-2V6a2 2 0 00-2-2h-2a2 2 0 00-2 2v2a2 2 0 002 2zM6 20h2a2 2 0 002-2v-2a2 2 0 00-2-2H6a2 2 0 00-2 2v2a2 2 0 002 2z"
/>
</svg>
</div>
<div class="featured_info">
<span class="title">Designed to be modern</span>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ut
ipsum esse corrupti. Quo, labore debitis!
</p>
</div>
</div>
<div class="grid-col-item">
<div class="icon">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"
/>
</svg>
</div>
<div class="featured_info">
<span class="title">Documentation for everything</span>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Non
nostrum voluptate totam ipsa corrupti vero!
</p>
</div>
</div>
</div>
</div>
</section>
<footer></footer>
<!-- ==== ANIMATE ON SCROLL JS CDN -->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<!-- ==== GSAP CDN ==== -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.8.0/gsap.min.js"></script>
<!-- ==== SCRIPT.JS ==== -->
<script src="./script.js" defer></script>
</body>
</html>