Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>
- HELP WITH HTML
- </title>
- </head>
- <body>
- <!-- This is a comment! -->
- <h1>LINKS:</h1>
- <a href="http://www.w3schools.com/html/html_lists.asp">Ordered & Unordered Lists</a>
- <p><a href="http://www.w3schools.com/html/html_css.asp">HTML Styles: Color, Size, Font, etc.</a></p>
- <h1>HELP WITH HTML:</h1>
- <p><strong>To type in bold, you have to use the keyword strong. </strong></p>
- <h1>This is the first head paragraph. Use the h1 keyword.</h1>
- <h2>This is the second. Use the h2 keyword.</h2>
- <h3>Third. Use the h3 keyword.</h3>
- <h4>Fourth. Use the h4 keyword</h4>
- <h5>Fifth. Use the h5 keyword.</h5>
- <h6>And the last one, the sixth. Use the h6 keyword.</h6>
- <p>Now, onto adding links & images.</p>
- <p><strong>URL:</strong></p>
- <a href="http://www.w3schools.com/html/html_links.asp">To add a link, click this link</a>
- <p><strong>IMG:</strong> (You can click this to see how to add images)</p>
- <a href="http://www.w3schools.com/html/html_links.asp"/><img src="http://images.wisegeek.com/duckling-in-water.jpg"/></a>
- <p>Now it's time to go over ordered/unordered lists.</p>
- <h3><strong>Ordered Lists</strong></h3>
- <ol>
- <li>To make an ordered list, go to the link above.</li>
- </ol>
- <h3><strong>Unordered Lists</strong></h3>
- <ul>
- <li>To make an unordered list, go to same link above.</li>
- </ul>
- <h3>Next, we're going to use HTML styles!</h3>
- <p style= "color:green; font-size: 50; font-family: Verdana">In HTML, we can manipulate the text (HTML Styles) and how it looks, this includes its...</p>
- <ul>
- <li>Color.</li>
- <li>Font size</li>
- <li>Font it uses</li>
- </ul>
- <p>Now, here's even some more styles.</p>
- <p style = "background-color:grey"> You can also change the background color for a text. This is another HTML style. You use the background-color keyword.</p>
- <p style = "text-align:center"> You can also align your text using the text-align keyword.</p>
- <p> You can make it go right, left, or the center.</p>
- <p> One other thing we can do is <em>italicize</em> words using the em keyword!</p>
- <p> Go to the link above to see how you can use the HTML styles better.</p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment