Monday, October 20, 2014

Spread The Word

Hey guys, if you would please like this facebook page. I am trying to win a bet, but first I need 100 LIKES on this page. This page is not about anything in particular just a friend of mine called, "Samuel Chau" AKA Chauie.

please please like this page and share if you want to.
I AM FOREVER IN YOUR DEBT

https://www.facebook.com/samuelchauisbig

Saturday, October 18, 2014

HTML Basics

When creating a web page with html, this is the basic structure. All highlighted are notes and are not necessary.

<!DOCTYPE>
<html>
<body>

</body>
</html>


After this, you can add a heading and a paragraph.

<!DOCTYPE>
<html>
<body>

<h1>This is The Heading</h1>

<p>This is the paragraph</p>



</body>
</html>

Note that you end with a forward slash. You can add onto this by centering your heading and adding a pagebreak which separates the heading from the paragraph. You can make notes with //. 

<!DOCTYPE>
<html>
<body>

<h1><center>This is The Heading</center></h1>
<hr> // This is the page break 

<p>This is the paragraph</p>


</body>
</html>