-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
71 lines (71 loc) · 2.17 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
<!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" />
<script
src="https://kit.fontawesome.com/534a370458.js"
crossorigin="anonymous"
></script>
<title>FREE&OPEN</title>
<link
rel="icon"
type="image/x-icon"
href="./src/images/door-open-solid.svg"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="loading-center"></div>
<div class="wrapper">
<header class="header-section">
<div class="logo">
<h1 id="titl"><i class="fa-solid fa-door-open"></i>FREE&OPEN</h1>
</div>
<div class="section-controler">
<div class="nav-section">
<ul class="navs">
<li><a link="home" href="#">HOME</a></li>
<li>
<a link="linkedin" href="section/media.html">SOCIAL MEDIA</a>
</li>
</ul>
</div>
<div class="humberger-menu">
<i class="fa-solid fa-bars"></i>
<i class="fa-solid fa-xmark"></i>
</div>
</div>
</header>
<main class="main-section">
<h1>WELCOME ALL AND CONTRIBUTE</h1>
<button class="btn-get">
<a
link
rel="github"
href="https://github.com/jmngandu/FREE-OPEN/blob/main/CONTRIBUTING.md"
>
STARTED</a
>
</button>
</main>
<footer class="footer-section">
<div class="more-foot">
<h3 class="foot">
<a href="https://opensource.com/resources/what-open-source">FAQS</a>
</h3>
<h3 class="foot">
<a href="mailto:[email protected]" class="my-email">CONTACT</a>
</h3>
</div>
<h5 class="copyright">
Copyright © 2024 FREE&OPEN | All rights reserved.
</h5>
</footer>
</div>
<script src="main.js"></script>
</body>
</html>