forked from devvsakib/power-the-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
106 lines (102 loc) · 3.74 KB
/
blog.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blogs</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/[email protected]/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>
<!-- Nav tabs -->
<ul class="nav nav-tabs" id="navId">
<li class="nav-item">
<a href="./index.html" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="#tab2Id" 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 active">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>
</nav>
<section>
<div class="container">
<div class="row">
<div class="col-md-12 my-4">
<h1 class="text-center">Blogs</h1>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-body">
<h5 class="card-title">Hacktoberfest 2020</h5>
<p class="card-text">
Hacktoberfest is a month-long celebration of open source
software run by DigitalOcean in partnership with GitHub and
Twilio. Hacktoberfest is open to everyone in our global
community! Four quality pull requests must be submitted to
public GitHub repositories. You can sign up anytime between
October 1 and October 31.
</p>
<a
href="https://hacktoberfest.digitalocean.com/"
class="btn btn-primary"
>Learn More</a
>
</div>
</div>
<div class="card my-3">
<div class="card-body">
<h5 class="card-title">Hacktoberfest 2020</h5>
<p class="card-text">
Hacktoberfest is a month-long celebration of open source
software run by DigitalOcean in partnership with GitHub and
Twilio. Hacktoberfest is open to everyone in our global
community! Four quality pull requests must be submitted to
public GitHub repositories. You can sign up anytime between
October 1 and October 31.
</p>
<a
href="https://hacktoberfest.digitalocean.com/"
class="btn btn-primary"
>Learn More</a
>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="footer">PowerTheWeb | Developed By PTW Community @ 2022</div>
</body>
</html>