00.1 Learn more about creating web pages
Learn more about creating web pages
by mattslay
HTML
<!DOCTYPE html>
<html>
<body>
<h1>Learn about creating web pages...</h1>
<p>Web pages are built using "HTML markup". It is a special syntax to format and style information you want to present to users. To create HTML, you wrap the regular text that you'd write in document with special "tags" and "attributes" to create the visual effects you want the users to see.</p>
<h2>
Getting started with basic HTML page elements
</h2>
<p>
This sample demonstrates the following: <br />
"h1" and "h2" tags for creating section headers in a page.<br />
"p" tag for creating paragraphs of text.<br />
"strong" tag to make works bold<br/>
"em" tag to mark words in italics
"u" tag to underline a word.
</p>
<h2>
Formatting with markup tags...
</h2>
<p>
You can make words <strong>bold</strong>, and use <em>italics</em>, and you can add <u>underlining</u> to certain words.
</p>
</body>
</html>