-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (92 loc) · 5.25 KB
/
Copy pathindex.html
File metadata and controls
107 lines (92 loc) · 5.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Learn Bootstrap 3 at EarlyCamp</title>
<!------------- CSS --------------->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Learn to Create Websites</h1>
<p>In today's world internet is the most popular way of connecting with the people. At <a href="#" target="_blank">earlycamp</a> you will learn the essential of web development technologies along with real life practice example, so that you can create your own website to connect with the people around the world.</p>
<p><a href="#" target="_blank" class="btn btn-success btn-lg">Get started today</a></p>
</div>
<!--For 2 splits-->
<div class="row">
<div class="col-sm-6">
<h2>HTML</h2>
<p>HTML is a markup language that is used for creating web pages. The HTML tutorial section will help you understand the basics of HTML, so that you can create your own web pages or website.</p>
<p><a href="#" target="_blank" class="btn btn-success">Learn More »</a></p>
</div>
<div class="col-sm-6">
<h2>CSS</h2>
<p>CSS is used for describing the presentation of web pages. The CSS tutorial section will help you learn the essentials of CSS, so that you can fine control the style and layout of your HTML document.</p>
<p><a href="#" target="_blank" class="btn btn-success">Learn More »</a></p>
</div>
</div>
<!--For 3 SPlits-->
<div class="row">
<div class="col-sm-4">
<h2>Bootstrap</h2>
<p>Bootstrap is a powerful front-end framework for faster and easier web development. The Bootstrap tutorial section will help you learn the techniques of Bootstrap so that you can create web your own website with much less efforts.</p>
<p><a href="#" target="_blank" class="btn btn-success">Learn More »</a></p>
</div>
<div class="col-sm-4">
<h2>Bootstrap</h2>
<p>Bootstrap is a powerful front-end framework for faster and easier web development. The Bootstrap tutorial section will help you learn the techniques of Bootstrap so that you can create web your own website with much less efforts.</p>
<p><a href="#" target="_blank" class="btn btn-success">Learn More »</a></p>
</div>
<div class="col-sm-4">
<h2>References</h2>
<p>The references section outlines all the standard HTML tags and CSS properties along with other useful references such as color names and values, symbols and character entities, web safe fonts, language codes, HTTP messages and much more.</p>
<p><a href="#" target="_blank" class="btn btn-success">Learn More »</a></p>
</div>
</div>
<!--For one Whole sized shape-->
<div class="col-sm-12">
<h2>References</h2>
<p>The references section outlines all the standard HTML tags and CSS properties along with other useful references such as color names and values, symbols and character entities, web safe fonts, language codes, HTTP messages and much more.</p>
<p><a href="#" target="_blank" class="btn btn-success">Learn More »</a></p>
</div>
<!--For 4 Splits-->
<div class="row">
<div class="col-sm-3">
<h2>Examples</h2>
<p>The examples section encloses an extensive collection of examples on various topic that you can try and test yourself using online HTML editor.</p>
<p><a href="#" target="_blank" class="btn btn-success">Learn More »</a></p>
</div>
<div class="col-sm-3">
<h2>FAQ</h2>
<p>The collection of Frequently Asked Questions (FAQ) provides brief answers to many common questions related to web design and development.</p>
<p><a href="#" target="_blank" class="btn btn-success">Learn More »</a></p>
</div>
<div class="col-sm-3">
<h2>FAQ</h2>
<p>The collection of Frequently Asked Questions (FAQ) provides brief answers to many common questions related to web design and development.</p>
<p><a href="#" target="_blank" class="btn btn-success">Learn More »</a></p>
</div>
<div class="col-sm-3">
<h2>FAQ</h2>
<p>The collection of Frequently Asked Questions (FAQ) provides brief answers to many common questions related to web design and development.</p>
<p><a href="#" target="_blank" class="btn btn-success">Learn More »</a></p>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-12">
<footer>
<p>© Copyright 2013 </p>
</footer>
<!---------- Script ------------->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</div>
</div>
</div>
</body>
</html>