-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml_lecture.html
More file actions
83 lines (51 loc) · 2.69 KB
/
html_lecture.html
File metadata and controls
83 lines (51 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML Lecture</title>
</head>
<body>
<!-- <header>–>-->
<!-- <h1 id = "top"> Hello, World!</h1>-->
<!-- </header>-->
<!-- <main>-->
<!-- <div>-->
<!-- <div>-->
<!-- <img src="img/blase_blah.jpg" alt="blase blah image goes here">-->
<!--<!– images: <img src="" alt=""> are void elements –>-->
<!-- <p>"images: < img src="" alt=""> are void elements" </p>-->
<!-- </div>-->
<!-- <div>-->
<!-- <a href="http://meredithwang.com">Wife's photography portfolio website</a>-->
<!--<!– anchors: <a href="">text for link here</a> requires close tags–>-->
<!-- <p>"anchors: < a href=""> text or nested element (i.e. images) for link here< /a> requires close tags"</p>-->
<!-- </div>-->
<!-- <div>-->
<!-- <a href="http://google.com" target="_blank"> Visit google in new window, which is default </a>-->
<!-- <p>target="" sets how a link is opened: "_blank" opens link in new tab</p>-->
<!-- <a href="http://google.com" target="_self">Visit google in the same frame as it was clicked .</a><br>-->
<!-- <p>target="_self">Visit google in the same frame as it was clicked .</p>-->
<!-- <a href="http://google.com" target="_parent">Visit google in the parent frame .</a><br>-->
<!-- <p>target="_parent">Visit google in the parent frame .</p>-->
<!-- <a href="http://google.com" target="_top">Visit google in the full body of the window .</a><br>-->
<!-- <p>target="_top">Visit google in the full body of the window .</p>-->
<!-- </div>-->
<!-- <div>-->
<!-- <a href="http://google.com" > Visit google by clicking image-->
<!-- <img src="https://www.google.com/images/srpr/logo1w.png" alt="Hotlink Google Logo"></a><br>-->
<!-- </div>-->
<!-- </div>-->
<!-- </main>-->
<!-- <h1> hello World </h1> <br>-->
<!-- <h1> hello World </h1> <br>-->
<!-- <h1> hello World </h1> <br>-->
<!-- <h1> hello World </h1> <br>-->
<!-- <h1> hello World </h1> <br>-->
<!-- <h1> hello World </h1> <br>-->
<!-- <h1> hello World </h1> <br>-->
<!-- <h1> hello World </h1> <br>-->
<!-- <footer>-->
<!-- <a href ="#top">Go to top</a>-->
<!-- </footer>-->
</body>
</html>