This repository has been archived by the owner on Sep 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreview-mvp.html
113 lines (98 loc) · 2.79 KB
/
review-mvp.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<html>
<head>
<title>LUNCHTML 2.0 - Review: MVP Tags</title>
<link rel="stylesheet" type="text/css" href="style-review.css" />
<link href='http://fonts.googleapis.com/css?family=Ribeye+Marrow' rel='stylesheet' type='text/css'>
</head>
<body>
<h1>The MVP Tags</h1>
<a name="html"></a>
<br/><br/><br/>
<h2><html>, <head>, <title> & <body> </h2>
HTML:
<pre>
<html>
<head>
<title>
Hello World Page
</title>
</head>
<body>
Hello, world.
</body>
</html>
</pre>
<div class="nav">
<a href="#html"><html> <head> <title> & <body></a> |
<a href="#a"><a></a> |
<a href="#img"><img></a> |
<a href="#p"><p></a> |
<a href="#br"><br></a>
</div>
<a name="a"></a><br/><br/><br/><h2><a></h2>
HTML:
<pre>
<a href="http://www.pcmag.com" title="PCMag Website">Put the 'PC' back in your Mac!</a>
</pre>
RESULT: <a href="http://www.pcmag.com" title="PCMag Website">Put the 'PC' back in your Mac!</a>
<div class="nav">
<a href="#html"><html> <head> <title> & <body></a> |
<a href="#a"><a></a> |
<a href="#img"><img></a> |
<a href="#p"><p></a> |
<a href="#br"><br></a>
</div>
<a name="img"><br/><br/><br/><h2><img></h2>
HTML:
<pre>
<img src="dancing-banana.gif">
</pre>
RESULT: <img src="dancing_banana.gif">
<div class="nav">
<a href="#html"><html> <head> <title> & <body></a> |
<a href="#a"><a></a> |
<a href="#img"><img></a> |
<a href="#p"><p></a> |
<a href="#br"><br></a>
</div>
<a name="p"><br/><br/><br/><h2><p></h2>
HTML:
<pre>
<p>Some riveting text here.</p>
<p>Some OTHER riveting text here.</p>
</pre>
RESULT: <p>Some riveting text here.</p>
<p>Some OTHER riveting text here.</p>
<div class="nav">
<a href="#html"><html> <head> <title> & <body></a> |
<a href="#a"><a></a> |
<a href="#img"><img></a> |
<a href="#p"><p></a> |
<a href="#br"><br></a>
</div>
<a name="br"><br/><br/><br/><h2><br></h2>
HTML:
<pre>
<p>
Some riveting text here.
<br>
<br>
Some OTHER riveting text here.
</p>
</pre>
RESULT:
<p>
Some riveting text here.
<br>
<br>
Some OTHER riveting text here.
</p>
<div class="nav">
<a href="#html"><html> <head> <title> & <body></a> |
<a href="#a"><a></a> |
<a href="#img"><img></a> |
<a href="#p"><p></a> |
<a href="#br"><br></a>
</div>
</body>
</html>