Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Internshala-Online-Trainings authored Mar 1, 2019
1 parent 6db1ad5 commit 052b4ae
Show file tree
Hide file tree
Showing 76 changed files with 1,925 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Steps to open the folder in netbeans:
1. Open netbeans.
2. Click on file in the top menu.
3. Choose New Project option.
4. Choose HTML5/Javascript category and in Projects section, choose HTML5/JS Application with Existing Source.
5. For Site Root, browse to the folder where you have extracted these files.
6. Click on finish.
7. The folder will open in netbeans.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type=" text/css">
<!-- jQuery library -->
<script src="bootstrap/js/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="bootstrap/js/bootstrap.min.js"></script>


</head>
<body>
<div>
TO DO Supply content.
</div>

</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Bootstrap Introduction</title>


<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >

<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>


<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Steps to open the folder in netbeans:
1. Open netbeans.
2. Click on file in the top menu.
3. Choose New Project option.
4. Choose HTML5/Javascript category and in Projects section, choose HTML5/JS Application with Existing Source.
5. For Site Root, browse to the folder where you have extracted these files.
6. Click on finish.
7. The folder will open in netbeans.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<html>
<head>
<title>Breakpoints - hidden/visible concept</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >

<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>

<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="hidden-lg">First Div </div>
<div class="second">Second Div </div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Breakpoints - hidden/visible concept</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >

<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>

<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="hidden-md">First Div </div>
<div class="second">Second Div </div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<title>Breakpoints - hidden/visible concept</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >

<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>

<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.first{
display:none;
}
@media (min-width : 1200px){
.first{
display:block;
}
}
</style>

</head>
<body>
<div class="first">First Div </div>
<div class="second">Second Div </div>
</body>
</html>


Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<title>Breakpoints - hidden/visible concept</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >


<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>


<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">


</head>
<body>
<div class="visible-lg">First Div </div>
<div class="second">Second Div </div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<title>Breakpoints - hidden/visible concept</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >


<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>


<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>


<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="visible-md">First Div </div>
<div class="second">Second Div </div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Steps to open the folder in netbeans:
1. Open netbeans.
2. Click on file in the top menu.
3. Choose New Project option.
4. Choose HTML5/Javascript category and in Projects section, choose HTML5/JS Application with Existing Source.
5. For Site Root, browse to the folder where you have extracted these files.
6. Click on finish.
7. The folder will open in netbeans.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Breakpoints - hidden/visible concept</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >

<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>

<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="hidden-sm">First Div </div>
<div class="second">Second Div </div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<html>
<head>
<title>Breakpoints - hidden/visible concept</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >

<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>

<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="hidden-lg hidden-md">First Div </div>
<div class="second">Second Div </div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<title>Breakpoints - hidden/visible concept</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >


<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>


<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>


<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="visible-sm">First Div </div>
<div class="second">Second Div </div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Steps to open the folder in netbeans:
1. Open netbeans.
2. Click on file in the top menu.
3. Choose New Project option.
4. Choose HTML5/Javascript category and in Projects section, choose HTML5/JS Application with Existing Source.
5. For Site Root, browse to the folder where you have extracted these files.
6. Click on finish.
7. The folder will open in netbeans.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<title> Partnerships of batman </title>
<style>
.wrapper{
font-size:14px;
font-family: sans-serif;
margin-left:10px;
}
.important_text{
font-size: 16px;
font-weight: bold;
}
</style>
</head>
<body>
<h2>The Partnerships of batman</h2>
<div class="wrapper important_text">Partnerships</div>
<div class="wrapper">
<ul>
<li>Robin</li>
<li>Batgirl</li>
<li>James "Jim" Gordon</li>
<li>Green Arrow</li>
<li>Catwoman</li>
<li>Superman</li>
<li>Wonder Woman</li>
</ul>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Steps to open the folder in netbeans:
1. Open netbeans.
2. Click on file in the top menu.
3. Choose New Project option.
4. Choose HTML5/Javascript category and in Projects section, choose HTML5/JS Application with Existing Source.
5. For Site Root, browse to the folder where you have extracted these files.
6. Click on finish.
7. The folder will open in netbeans.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Containing elements</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >

<!--jQuery library-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>

<!--Latest compiled and minified JavaScript-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.container_decor{
background-color: #ffff00;
}
</style>
</head>
<body>
<div class="container container_decor">
<h1>Hey I am contained in h1 heading element. </h1>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Containing elements</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >


<!--jQuery library-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>


<!--Latest compiled and minified JavaScript-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.container_decor{
background-color: #ffff00;
}
</style>
</head>
<body>
<div class="container-fluid container_decor">
<h1>Hey I am contained in h1 heading element. </h1>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Steps to open the folder in netbeans:
1. Open netbeans.
2. Click on file in the top menu.
3. Choose New Project option.
4. Choose HTML5/Javascript category and in Projects section, choose HTML5/JS Application with Existing Source.
5. For Site Root, browse to the folder where you have extracted these files.
6. Click on finish.
7. The folder will open in netbeans.
Loading

0 comments on commit 052b4ae

Please sign in to comment.