-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (62 loc) · 2.47 KB
/
Copy pathindex.html
File metadata and controls
98 lines (62 loc) · 2.47 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
<!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">
<meta name="description" content="">
<title>jQuery Practice</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Page Header -->
<header class="intro-header" style="background-image: url('images/hero.jpg')">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
<div class="page-heading">
<h1>Coding: JS</h1>
<hr class="small">
<span class="subheading">Getting Comfortable with the Basics </span> </div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<main>
<div class="container">
<div class="row">
<div class="col-xs-12">
<!-- Use JS to add header text into 'main-header' without button click. -->
<div id="main-header"></div>
<hr>
<!-- Use JS to add paragraph text into 'action1-message' with button click from 'action1-btn'. -->
<button id="action1-btn">Click me for Action #1</button>
<div id="action1-message"></div>
<hr>
<!-- Use JS to add an h2 into 'heading2' with button click. -->
<button id="header2-btn">Click me for Heading2</button>
<div id="header2-message"></div>
<!-- Add additional HTML elements here to interact with JS here-->
<div id="greeting"></div>
<button id="my-button">Click me!</button>
<div id ="my-message"></div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer></footer>
<!-- Load JS Here -->
<script type="text/javascript" src="main.js"></script>
</body>
</html>