forked from devvsakib/power-the-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (64 loc) · 2.33 KB
/
index.html
File metadata and controls
68 lines (64 loc) · 2.33 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
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hacktoberfest React Projects</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css"
integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js"
integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<nav id="navi">
<div id="menuToggle">
<!-- Nav tabs -->
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
<ul id="menu">
<a href="index.html"class="active"><li>Home</li></a>
<a href="./contributor.html" ><li>Contributors</li></a>
<a href="./project.html" ><li>Projects</li></a>
<a href="./blog.html" ><li>Blog</li></a>
<a href="#" class="disabled"><li>Open-Source</li></a>
</ul>
</div>
</nav>
<section class="main-container d-flex">
<div class="px-5 titles">
<h1>Welcome to the open-source projects.</h1>
<p>make PR and get accepted by <span>HACKTOBERFEST</span></p>
<p>
Building Community for <span class="wb">WEB DEVS</span>. Join with us.
</p>
<a target="_blank" href="https://discord.gg/6XRTeHRxWV">JOIN</a>
</div>
<div>
<iframe
src="https://discord.com/widget?id=1014618195174363157&theme=dark"
width="350"
height="500"
allowtransparency="true"
frameborder="0"
sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"
></iframe>
</div>
</section>
<div class="footer">PowerTheWeb | Developed By PTW Community @ 2022</div>
</body>
</html>