-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
189 lines (159 loc) · 5.93 KB
/
index.html
File metadata and controls
189 lines (159 loc) · 5.93 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="Basic.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<style>
/* Make the image fully responsive */
.carousel-inner img {
width: 80%;
height: 80%;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark navbar-full ">
<!-- Brand -->
<a class="navbar-brand" href="#"><i class="fa fa-fw fa-home"></i>HOME</a>
<!-- Links -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="WEBHTML.HTML">HTML </a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">CSS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">PHP</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">JAVA</a>
</li>
<!-- Dropdown -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
MORE
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">MY SQL</a>
<a class="dropdown-item" href="#">JAVASCRIPT</a>
<a class="dropdown-item" href="#">DBMS</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><i class="fa fa-fw fa-user"></i>LOGIN</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><i class="fa fa-fw fa-envelope"></i> CONTACT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><i class="fa fa-fw fa-search"></i>SEARCH</a>
</li>
<li class="nav-item">
<a class="nav-link" href="MAP.HTML">MAP</a>
</li>
</ul>
</nav>
<div class="jumbotron text-center">
<h1>LEARNING SCHOOL</h1>
<p>is an educational website for learning web technologies online.Content includes tutorials and references relating to HTML, CSS, JavaScript, JSON, PHP, Python, AngularJS, SQL, Bootstrap, Node.js, jQuery, XQuery, AJAX, and XML.
</p>
</div>
<div class="container">
<h3> DIALOG BOX</h3>
\
<!-- Button to Open the Modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">
Refer
</button>
<!-- The Modal -->
<div class="modal fade" id="myModal">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">LEARNING</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
You will find tutorials of all languages.
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<h3>HTML</h3>
<p> With HTML you can create your own Website..</p>
<p>This tutorial teaches you everything about HTML</p>
<p> HTML is easy to learn - You will enjoy it. </p>
</div>
<div class="col-sm-4">
<h3>CSS Tutorial</h3>
<p>CSS is a language that describes the style of an HTML document.</p>
<p>CSS describes how HTML elements should be displayed.</p>
<P> This tutorial will teach you CSS from basic to advanced.</P>
</div>
<div class="col-sm-4">
<h3>Bootstrap 4 Tutorial</h3>
<p>Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first websites.</br>
Bootstrap is completely free to download and use!</p>
</div>
</div>
</div>
<div id="demo" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="C:\Users\PratyushPrakash\Desktop\html\ASSIGNMENT\HTML-FILES\logo.jpg" alt="Los Angeles" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="C:\Users\PratyushPrakash\Desktop\html\ASSIGNMENT\HTML-FILES\PHP.png" alt="Chicago" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="C:\Users\PratyushPrakash\Desktop\html\ASSIGNMENT\HTML-FILES\bootstrap-logo.jpg" alt="New York" width="1100" height="500">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
<div class="container">
<p></p>
<p>CLICK <kbd>MAP</kbd> to open MAP.</p>
</div>
<footer>
<nav class="navbars">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-google"></a>
<a href="#" class="fa fa-linkedin"></a>
<a href="#" class="fa fa-youtube"></a>
<a href="#" class="fa fa-instagram"></a>
<a href="#" class="fa fa-skype"></a>
</nav>
</body>
</html>