-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.7 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<title>My first page!</title>
</head>
<body>
<h1>Our Menu</h1>
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="item">
<h2 class="item-title1">HTML</h2>
<p>HTML is the standard markup language for Web pages.
With HTML you can create your own Website.
HTML is easy to learn - You will enjoy it!</p>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="item">
<h2 class="item-title2">CSS</h2>
<p>CSS is the language we use to style an HTML document.
CSS describes how HTML elements should be displayed.
This tutorial will teach you CSS from basic to advanced.</p>
</div>
</div>
<div class="col-sm-12 col-md-12 col-lg-4">
<div class="item">
<h2 class="item-title3">JavaScript</h2>
<p>JavaScript is the world's most popular programming language.
JavaScript is the programming language of the Web.
JavaScript is easy to learn.
This tutorial will teach you JavaScript from basic to advanced.</p>
</div>
</div>
</div>
</body>
</html>