-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (72 loc) · 3.98 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
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>web_dev_quickstart</title>
<!-- The below three meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="style.css" rel="stylesheet">
<!-- use bootstrap.css if you plan to modify boostrap and then minify it for web performance. Otherwise use the minifed version (bootstrap.min.css) or CDN version. -->
<link href="external_applications/bootstrap-3.3.7-dist/css/bootstrap.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Hind|Lato|Lora|Montserrat|Open+Sans" rel="stylesheet">
</head>
<body>
<!-- div container tag-->
<div id="site-index">
<div class="container">
<!-- a simple navigation bar, use bootstrap to customize. -->
<ul class="nav nav-pills">
<li role="presentation" class="active"><a href="index.html">Home</a></li>
<li role="presentation"><a href="#">Template</a></li>
<li role="presentation"><a href="#">Link</a></li>
<li role="presentation"><a href="#">Link</a></li>
</ul>
<!-- The main tag specifies the main content of a document. The content inside the <main> element should be unique to the document. It should not contain any content that is repeated across documents such as sidebars, navigation links, copyright information, site logos, and search forms. -->
<main>
<!-- head tags-->
<h1>Welcome !</h1>
<hr>
<h3><span>This is a quick start</span> application for a responsive web development <br> <span>application</span> using the following web technologies.</h3>
<div class="row">
<div class="col-md-4">
<img src="images/HTML5_Logo.png" height="50" width="50" alt="HTML5 Logo">
</div>
<div class="col-md-4">
<img src="images/CSS3_logo.png" height="50" width="50" alt="HTML5 Logo">
</div>
<div class="col-md-4">
<img src="images/bootstrap.png" height="50" width="100" alt="HTML5 Logo">
</div>
<div class="col-md-4">
<img src="images/jQurery.gif" height="50" width="50" alt="HTML5 Logo">
</div>
<!-- end of row-->
</div>
<p>To get started clone the repository from github, <a href="https://github.com/creativebitstudio/web_dev_quickstart.git">find it here, </a><br> and follow the README file to get working on your website.</p>
<!--end of main tag-->
</main>
<!-- end of container-->
</div>
<!--end of div container tag-->
</div>
<!--The article tag specifies independent, self-contained content.-->
<article>
</article>
<!--The <section> tag defines sections in a document, such as chapters, headers, footers, or any other sections of the document.-->
<section>
</section>
<!-- footer tag-->
<footer id="site-footer">
<h5>CreativeBitStudio 2017</h5>
</footer>
<!-- Note: Unless otherwise specified, script tags are best placed before the end of the body tag-->
<!-- jQuery script-->
<script src="javascript/jQuery/jquery-3.1.1.js"></script>
<!-- use boostrap.min.js or CDN as shown below for web performance-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<!--end of body tag-->
</body>
<!--end of html-->
</html>