HTML Hypertext Markup Language: Wednesday, October 27, 2010
HTML Hypertext Markup Language: Wednesday, October 27, 2010
core.css
Wordpad
Microsoft Word
Wordpad
Microsoft Word
You’ve been warned
</body>
</html>
</body>
</html>
</body>
</html>
</body>
</html>
</body>
</html>
Bad Markup
BAD: <html><body></html> </body>
<body><html></body> </html>
</body>
</html>
</body>
</html>
</body>
</html>
Paragraph
</body>
Wednesday, October 27, 2010
Basic Tags
<body>
<h1>SpectorDance</h1>
<h2>Classes</h2>
<p>Blah Blah Blah Blah</p>
<div>More Blah Blah</div>
<!-- I’m a comment -->
<ol>
<li>Cherries</li>
<li>Melons</li>
</ol>
</body>
Wednesday, October 27, 2010
Basic Tags
<body>
<ul> Ordered List (numbered list)
<li>Apples</li> Each list item is between <li></li>
<li>Bananas</li>
</ul>
<ol>
<li>Cherries</li>
<li>Melons</li>
</ol>
</body>
Wednesday, October 27, 2010
Basic Tags
<body>
<img src=”spectordance.jpg” />
<img width=”200” src=”spectordance.jpg” />
<img src=”images/spectordance.jpg” />
<img src=”http://foo.com/coolpic.png” />
</body>
Wednesday, October 27, 2010
Basic Tags
<body>
<img src=”spectordance.jpg” />
<img width=”200” src=”spectordance.jpg” />
<img src=”images/spectordance.jpg” />
<img src=”http://foo.com/coolpic.png” />
</body>
Wednesday, October 27, 2010
Basic Tags
<body>
<img src=”spectordance.jpg” />
<img width=”200” src=”spectordance.jpg” />
<img src=”images/spectordance.jpg” />
<img src=”http://foo.com/coolpic.png” />
</body>
Wednesday, October 27, 2010
Basic Tags
<body>
<a href=”classes.html”>Classes</a>
</body>
Wednesday, October 27, 2010
Formatting Tags
<body>
<p>We the people of the <b>United States</b>,
in <strong>order</strong> to form a more perfect
Union, establish Justice, insure domestic tranquility,
provide for the common defense ...
</p>
</body>
Wednesday, October 27, 2010
Formatting Tags
<body>
<p>We the people of the <i>United States</i>, in
<em>order</em> to form a more perfect Union,
establish Justice, insure domestic tranquility, provide for
the common defense ...
</p>
</body>
Wednesday, October 27, 2010
Formatting Tags
<body>
<p>We the people of the United States in order to
form a more <big>perfect</big> Union, establish
Justice, insure domestic tranquility, provide for the
common defense ...
</p>
</body>
Wednesday, October 27, 2010
Formatting Tags
<body>
<p>We the people of the United States in order to
form a more <small>perfect</small> Union, establish
Justice, insure domestic tranquility, provide for the
common defense ...
</p>
</body>
Wednesday, October 27, 2010