forked from lingonsaft/hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db10766
commit f6b7474
Showing
1 changed file
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<title>Hacktoberfest - Motivation</title> | ||
</head> | ||
|
||
<body> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> <a class="navbar-brand" href="./index.html" style="color: #2296bf;">Hacktoberfest</a> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor01" aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> | ||
<div class="collapse navbar-collapse" id="navbarColor01"> | ||
<ul class="navbar-nav mr-auto" id="menu"> | ||
<!-- Menu --> | ||
</ul> | ||
</div> | ||
</nav> | ||
|
||
<div class="container"> | ||
<div class="jumbotron p-3 p-md-5 text-white rounded bg-dark mt-5"> | ||
<div class="col-md-6 px-0"> | ||
<h1 class="display-4 font-italic">Learn Programming, get motivation about programming, latest news related to tech etc.</h1> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-6"> | ||
<div class="bg-light mr-md-3 pt-3 px-3 pt-md-5 px-md-5 text-center overflow-hidden"> | ||
<div class="my-3 p-3"> | ||
<h2 class="display-5">Getting started with magical script JS</h2> | ||
<p class="lead">Go through this javascript series it is worth.</p> | ||
</div> | ||
<div class="bg-white box-shadow mx-auto"> | ||
<iframe width="450" height="350" src="https://www.youtube.com/embed/dlfrWbYk1v0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-md-6"> | ||
<div class="bg-primary text-white mr-md-3 pt-3 px-3 pt-md-5 px-md-5 text-center overflow-hidden"> | ||
<div class="my-3 p-3"> | ||
<h2 class="display-5">Don't waste more time, are you still here?</h2> | ||
<p class="lead">It is right time to get started!</p> | ||
</div> | ||
<div class="bg-white box-shadow mx-auto"> | ||
<iframe width="450" height="350" src="https://www.youtube.com/embed/87C5iuGaCq0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
<div class="row my-4"> | ||
<div class="col-md-6"> | ||
<div class="bg-dark text-white mr-md-3 pt-3 px-3 pt-md-5 px-md-5 text-center overflow-hidden"> | ||
<div class="my-3 p-3"> | ||
<h2 class="display-5">Do you still want know about algorithms?</h2> | ||
<p class="lead">Here is one of the best instructor I found.</p> | ||
</div> | ||
<div class="bg-white box-shadow mx-auto"> | ||
<iframe width="450" height="350" src="https://www.youtube.com/embed/FEnwM-iDb2g" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-md-6"> | ||
<div class="bg-light mr-md-3 pt-3 px-3 pt-md-5 px-md-5 text-center overflow-hidden"> | ||
<div class="my-3 p-3"> | ||
<h2 class="display-5">Here are some coding challenges.</h2> | ||
<p class="lead">Yet another great personality on YouTube.</p> | ||
</div> | ||
<div class="bg-white box-shadow mx-auto"> | ||
<iframe width="450" height="350" src="https://www.youtube.com/embed/17WoOqgXsRM" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
<div class="row my-4"> | ||
<div class="col-md-12"> | ||
<div class="bg-danger mr-md-3 pt-3 px-3 pt-md-5 px-md-5 text-center overflow-hidden"> | ||
<div class="my-3 p-3"> | ||
<h2 class="display-5">Node Package Manager NPM here it is!</h2> | ||
<p class="lead">Know all about NPM</p> | ||
</div> | ||
<div class="bg-white box-shadow mx-auto"> | ||
<iframe width="1000" height="500" src="https://www.youtube.com/embed/s70-Vsud9Vk" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
</body> | ||
</html> |