forked from devvsakib/power-the-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (73 loc) · 2.66 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
<!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 -->
<ul class="nav nav-tabs" id="navId">
<li class="nav-item">
<a href="index.html" class="nav-link active">Home</a>
</li>
<li class="nav-item">
<a href="./contributor.html" class="nav-link">Contributors</a>
</li>
<li class="nav-item">
<a href="./project.html" class="nav-link">Projects</a>
</li>
<li class="nav-item">
<a href="./blog.html" class="nav-link">Blog</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link disabled">Open-Source</a>
</li>
<li class="nav-item">
<a href="./faq.html" class="nav-link">FAQs</a>
</li>
</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>