-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
60 lines (56 loc) · 2.4 KB
/
index2.html
File metadata and controls
60 lines (56 loc) · 2.4 KB
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
<!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>Business Agency Website</title>
<link rel="icon" href="images/web-development.png" type="images/png">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700;800&family=Oswald:wght@200;300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css"
/>
<body>
<div class="container">
<nav class="navbar">
<div class="logo">
<a href="">
<span>C</span>ode<span>A</span>nd<span>C</span>reate
</a>
</div>
<div class="nav-list">
<a href="#home" class="nav-link">Home</a>
<a href="#about-us" class="nav-link">About</a>
<a href="#pricing" class="nav-link">Pricing</a>
<a href="index2.html" class="nav-link">Projects</a>
<a href="#contact" class="nav-link">Contact</a>
</div>
</nav>
<!-- End of Nav-bar -->
<!-- Menubar -->
<div class="menu">
<div class="line line-1"></div>
<div class="line line-2"></div>
<div class="line line-3"></div>
</div>
<!-- End of Menubar -->
<section class="section-5" id="home">
<div class="banner">
<h1 class="banner-heading">
<span class="heading-1">Business Ideas</span>
<span class="heading-2">Consulting</span>
<span class="heading-3">Digital Marketing</span>
<span class="heading-4">Strategy</span>
</h1>
<p class="banner-paragraph">Lorem ipsum dolor sit.</p>
<button class="banner-btn">Discover Now</button>
</div>
</section>
<!--End of Section1-->
</div>
<script src="script.js"></script>
</body>
</html>