1
1
< html >
2
+
2
3
< head >
3
4
< title >
4
5
Chapter 4 homework!
5
6
</ title >
6
- < link rel ="stylesheet " href ="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css " integrity ="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO " crossorigin ="anonymous ">
7
+ < link rel ="stylesheet " href ="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css " integrity ="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO "
8
+ crossorigin ="anonymous ">
7
9
</ head >
10
+
8
11
< body >
9
12
< h1 >
10
13
Create page with JS!
11
- </ div >
14
+ </ h1 >
12
15
13
- < div id ="js-button "> </ div >
16
+ < div id ="js-button ">
17
+ < button type ="button " class ="btn btn-success "> Success </ button >
18
+ </ div >
14
19
15
- < div id ="js-login-form "> </ div >
20
+ < div id ="js-login-form ">
21
+ < form >
22
+ < div class ="form-group ">
23
+ < label for ="exampleInputEmail1 "> Email address</ label >
24
+ < input type ="email " class ="form-control " id ="exampleInputEmail1 " aria-describedby ="emailHelp "
25
+ placeholder ="Enter email " style ="width: 20rem; ">
26
+ < small id ="emailHelp " class ="form-text text-muted "> We'll never share your email with anyone else.</ small >
27
+ </ div >
28
+ < div class ="form-group ">
29
+ < label for ="exampleInputPassword1 "> Password</ label >
30
+ < input type ="password " class ="form-control " id ="exampleInputPassword1 " placeholder ="Password " style ="width: 20rem; ">
31
+ </ div >
32
+ < div class ="form-group form-check ">
33
+ < input type ="checkbox " class ="form-check-input " id ="exampleCheck1 ">
34
+ < label class ="form-check-label " for ="exampleCheck1 "> Check me out</ label >
35
+ </ div >
36
+ < button type ="submit " class ="btn btn-primary "> Submit</ button >
37
+ </ form >
38
+ </ div >
16
39
17
- < div id ="js-card "> </ div >
40
+ < div id ="js-card ">
41
+ < div class ="card " style ="width: 18rem; height: 300; ">
42
+ < img class ="card-img-top " src ="\MIB.jpg " alt ="Card image cap ">
43
+ < div class ="card-body ">
44
+ < h5 class ="card-title "> MIB</ h5 >
45
+ < p class ="card-text "> Men in Black.</ p >
46
+ < a href ="# " class ="btn btn-primary "> Watch movie</ a >
47
+ </ div >
48
+ </ div >
49
+ </ div >
18
50
19
51
< script src ="scripts/app.js "> </ script >
20
52
</ body >
53
+
21
54
</ html >
0 commit comments