-
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
Ashish Kumar singh
authored and
Ashish Kumar singh
committed
Nov 5, 2016
0 parents
commit 7568c0f
Showing
34 changed files
with
10,647 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,147 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>LearnWeb</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="css/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css"> | ||
<link rel="stylesheet" href="css/style.css" /> | ||
</head> | ||
<body background="rest.png"> | ||
|
||
<div class="navbar-static-top navbar-inverse"> | ||
<div class="container"> | ||
<div class="navbar-brand"> | ||
LearnWeb | ||
</div> | ||
|
||
<button class="navbar-toggle" data-toggle="collapse" data-target=".navHeaderCollapse"> | ||
<i class="glyphicon glyphicon-menu-hamburger"></i> | ||
</button> | ||
<div class="collapse navbar-collapse navHeaderCollapse"> | ||
<ul class="nav navbar-nav navbar-right"> | ||
<li id="hello"><a href="#Home">Home</a></li> | ||
<li id="hello"><a href="#about">Lessons</a></li> | ||
<li id="hello"><a href="#about">Videos</a></li> | ||
<li id="hello"><a href="#about">About the Editor</a></li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="jumbotron"> | ||
<div id="myCarousel" class="carousel slide" data-ride="carousel"> | ||
|
||
<ol class="carousel-indicators"> | ||
<li data-target="#myCarousel" data-slide-to="0" class="active"></li> | ||
<li data-target="#myCarousel" data-slide-to="1"></li> | ||
<li data-target="#myCarousel" data-slide-to="2"></li> | ||
<li data-target="#myCarousel" data-slide-to="3"></li> | ||
</ol> | ||
|
||
|
||
<div class="carousel-inner" role="listbox"> | ||
<div class="item active"> | ||
<img src="hi.jpg" alt="Chania" class="img-responsive"> | ||
<div class="carousel-caption"> | ||
<h1>Welcome to LearnWeb</h1><br> | ||
<p></p> | ||
</div> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="on.jpg" alt="Chania" class="img-responsive"> | ||
<div class="carousel-caption"> | ||
<h1>Want to learn from the beginning</h1> | ||
<p>Learn along with me as I learn</p> | ||
</div> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="hd.jpg" alt="Flower" class="img-responsive"> | ||
<div class="carousel-caption"> | ||
<h1>Let me teach you</h1> | ||
<p>Let me help you Learn web design so that you can create a website of your own</p> | ||
</div> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="splash.png" alt="Flower" class="img-responsive"> | ||
<div class="carousel-caption"> | ||
|
||
<p>And please download the necessary links!!!!</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev"> | ||
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> | ||
<span class="sr-only">Previous</span> | ||
</a> | ||
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next"> | ||
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> | ||
<span class="sr-only">Next</span> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="info"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-6 col-sm-12"> | ||
<p>Hello guys I am a first year computing student of National College Of Ireland and as a part of my module i need to make a website. | ||
This Website is a part of my project and i will teach you how to make a website.</p> | ||
</div> | ||
<div class="col-md-6 col-sm-12"> | ||
<center><img src="pro.jpg" width="200px" height="200px"></center> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-6 col-sm-12"> | ||
<p>Making a website isn't as difficult as it seems it just needs a little of concentration and a lot of hardwork.</p> | ||
<p>As i am still a student and theres a lot to learn i suggest you keep an eye on the website as it will be constantly updating.</p> | ||
</div> | ||
<div class="col-md-6 col-sm-12"> | ||
|
||
</div> | ||
|
||
</div> | ||
<div class="row"> | ||
<div class="col-md-12 col-sm-12"> | ||
<p>To do basic html i recommend you download nootepad++, its a pretty basic software where you can do your basic programming, | ||
its user friendly and will do for now, there are a lot of other softwares too which you could utilise, but for a beginner | ||
i recommend using notepad++. The link is mentioned below</p> | ||
<a href="https://notepad-plus-plus.org/download/v7.2.html">Notepad++</a> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
<div class="copyright"> | ||
<div class="container"> | ||
<footer>© Ashish</br><a href= "#">Back to top</a></footer> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> | ||
<script src="js/bootstrap.js"></script> | ||
<script>$(function() { | ||
$('a[href*="#"]:not([href="#"])').click(function() { | ||
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { | ||
var target = $(this.hash); | ||
target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); | ||
if (target.length) { | ||
$('html, body').animate({ | ||
scrollTop: target.offset().top | ||
}, 1000); | ||
return false; | ||
} | ||
} | ||
}); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
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,147 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>LearnWeb</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="css/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css"> | ||
<link rel="stylesheet" href="css/style.css" /> | ||
</head> | ||
<body background="rest.png"> | ||
|
||
<div class="navbar-static-top navbar-inverse"> | ||
<div class="container"> | ||
<div class="navbar-brand"> | ||
LearnWeb | ||
</div> | ||
|
||
<button class="navbar-toggle" data-toggle="collapse" data-target=".navHeaderCollapse"> | ||
<i class="glyphicon glyphicon-menu-hamburger"></i> | ||
</button> | ||
<div class="collapse navbar-collapse navHeaderCollapse"> | ||
<ul class="nav navbar-nav navbar-right"> | ||
<li id="hello"><a href="#Home">Home</a></li> | ||
<li id="hello"><a href="#about">Lessons</a></li> | ||
<li id="hello"><a href="#about">Videos</a></li> | ||
<li id="hello"><a href="#about">About the Editor</a></li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="jumbotron"> | ||
<div id="myCarousel" class="carousel slide" data-ride="carousel"> | ||
|
||
<ol class="carousel-indicators"> | ||
<li data-target="#myCarousel" data-slide-to="0" class="active"></li> | ||
<li data-target="#myCarousel" data-slide-to="1"></li> | ||
<li data-target="#myCarousel" data-slide-to="2"></li> | ||
<li data-target="#myCarousel" data-slide-to="3"></li> | ||
</ol> | ||
|
||
|
||
<div class="carousel-inner" role="listbox"> | ||
<div class="item active"> | ||
<img src="hi.jpg" alt="Chania" class="img-responsive"> | ||
<div class="carousel-caption"> | ||
<h1>Welcome to LearnWeb</h1><br> | ||
<p></p> | ||
</div> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="on.jpg" alt="Chania" class="img-responsive"> | ||
<div class="carousel-caption"> | ||
<h1>Want to learn from the beginning</h1> | ||
<p>Learn along with me as I learn</p> | ||
</div> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="hd.jpg" alt="Flower" class="img-responsive"> | ||
<div class="carousel-caption"> | ||
<h1>Let me teach you</h1> | ||
<p>Let me help you Learn web design so that you can create a website of your own</p> | ||
</div> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="splash.png" alt="Flower" class="img-responsive"> | ||
<div class="carousel-caption"> | ||
|
||
<p>And please download the necessary links!!!!</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev"> | ||
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> | ||
<span class="sr-only">Previous</span> | ||
</a> | ||
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next"> | ||
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> | ||
<span class="sr-only">Next</span> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="info"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-6 col-sm-12"> | ||
<p>Hello guys I am a first year computing student of National College Of Ireland and as a part of my module i need to make a website. | ||
This Website is a part of my project and i will teach you how to make a website.</p> | ||
</div> | ||
<div class="col-md-6 col-sm-12"> | ||
<center><img src="pro.jpg" width="200px" height="200px"></center> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-6 col-sm-12"> | ||
<p>Making a website isn't as difficult as it seems it just needs a little of concentration and a lot of hardwork.</p> | ||
<p>As i am still a student and theres a lot to learn i suggest you keep an eye on the website as it will be constantly updating.</p> | ||
</div> | ||
<div class="col-md-6 col-sm-12"> | ||
|
||
</div> | ||
|
||
</div> | ||
<div class="row"> | ||
<div class="col-md-12 col-sm-12"> | ||
<p>To do basic html i recommend you download nootepad++, its a pretty basic software where you can do your basic programming, | ||
its user friendly and will do for now, there are a lot of other softwares too which you could utilise, but for a beginner | ||
i recommend using notepad++. The link is mentioned below</p> | ||
<a href="https://notepad-plus-plus.org/download/v7.2.html">Notepad++</a> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
<div class="copyright"> | ||
<div class="container"> | ||
<footer>© Ashish</br><a href= "#">Back to top</a></footer> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> | ||
<script src="js/bootstrap.js"></script> | ||
<script>$(function() { | ||
$('a[href*="#"]:not([href="#"])').click(function() { | ||
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { | ||
var target = $(this.hash); | ||
target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); | ||
if (target.length) { | ||
$('html, body').animate({ | ||
scrollTop: target.offset().top | ||
}, 1000); | ||
return false; | ||
} | ||
} | ||
}); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
Binary file not shown.
Oops, something went wrong.