-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic_template.html
More file actions
67 lines (50 loc) · 1.82 KB
/
basic_template.html
File metadata and controls
67 lines (50 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>web_dev_quickstart</title>
<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">
<link href="external_applications/bootstrap-3.3.7-dist/css/bootstrap.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Hind" rel="stylesheet">
</head>
<body>
<!-- a simple navigation bar -->
<ul class="nav nav-pills">
<li role="presentation" class="active"><a href="index.html">Home</a></li>
<li role="presentation"><a href="basic_template.html">Template</a></li>
<li role="presentation"><a href="#">Link</a></li>
<li role="presentation"><a href="#">Link</a></li>
</ul>
<!-- header tag-->
<header id="" class=""></header>
<!-- article tag-->
<article id=""></article>
<!-- section tag-->
<section id=""></section>
<!-- div tag-->
<div id="" class=""></div>
<!-- head tags-->
<h1></h1>
<h2></h2>
<h3></h3>
<h4></h4>
<h5></h5>
<h6></h6>
<!-- span tag-->
<span id=""></span>
<!-- paragraph tag-->
<p class=""></p>
<!-- image tag-->
<img class="" src="" height="" width="" alt="">
<video width="" height="" autoplay loop muted>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg"> Your browser does not support the video tag.
</video>
<!-- footer tag-->
<footer id="" class=""></footer>
<!-- Note: Unless otherwise specified, script tags are best placed before the end of the body tag-->
<script src="external_applications/bootstrap-3.3.7-dist/js/bootstrap.js"></script>
</body>
</html>