-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (46 loc) · 1.97 KB
/
index.html
File metadata and controls
55 lines (46 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sneaky Shadows </title>
<!-- Icons -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<!-- CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header goes here -->
<header class="header">
<a href="#" class="logo">Sneaky Shadows</a>
<i class="bx bx-menu" id="menu-icon"></i>
<nav class="navbar">
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</nav>
</header>
<!-- Main Content goes here -->
<!-- Home section goes here -->
<section class="home" id="home">
<div class="home-content">
<h3>Welcome to </h3>
<h1>Sneaky Shadows</h1>
<h3>Community of <span>Developers</span></h3>
<p>We aim to foster a collaborative and inclusive environment where developers of all levels can come together to share ideas, learn from one another, and collectively develop software that addresses real-world challenges. We believe in the power of open source to drive innovation and improve the lives of people worldwide.</p>
<div class="social-media">
<a href="#"><i class='bx bxl-facebook'></i></a>
<a href="#"><i class='bx bxl-twitter'></i></a>
<a href="#"><i class='bx bxl-instagram'></i></a>
<a href="#"><i class='bx bxl-linkedin'></i></a>
<a href="#"><i class='bx bxl-github'></i></a>
</div>
</div>
<div class="home-img">
<img src="images/logo2.jpeg" alt="home">
</div>
</section>
</body>
</html>