Sunday, September 16, 2012

Great HTML codes

Here are some codes to get you started. I suggest you go on the website quack it.com for HTML codes because that's where I got all of this :
COMMENT BOX CODE:

Comments:

<form action="/html/tags/html_form_tag_action.cfm" method="post">
Comments:<br />
<textarea name="comments" id="comments">
Hey... say something!
</textarea><br />
<input type="submit" value="Submit" />
</form>

  MARQUEE CODE:

Your slide-in text goes here
 <marquee behavior="slide" direction="left">Your slide-in text goes here</marquee>

SCROLL BOX CODE:

As you can see, once there's enough text in this box, the box will grow scroll bars... that's why we call it a scroll box! You could also place an image into the scroll box.
<div style="height:120px;width:120px;border:1px solid #ccc;font:16px/26px Georgia, Garamond, Serif;overflow:auto;">
As you can see, once there's enough text in this box, the box will grow scroll bars... that's why we call it a scroll box! You could also place an image into the scroll box.
</div>

Sunday, September 9, 2012

Welcome! Swimming fish

Introduction to Computer HTML5!

What is HTML?

  • HTML stands for Hyper Text Markup Language
  • HTML is not a programming language, it is a markup language
  • A markup language is a set of markup tags
  • The purpose of the tags are to describe page content


HTML Documents = Web Pages

  • HTML documents describe web pages
  • HTML documents contain HTML tags and plain text
  • HTML documents are also called web pages
  •  First, it is a good idea to maintain order and structure in your HTML documents. By posting well arranged documents you will not only show others your mastery of HTML but will also make it considerably easier for yourself to keep an overview.<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>

 You must at least have a heading, so why don't have one?

HTML Links

HTML links are defined with the <a> tag.

HTML Images

HTML images are defined with the <img> tag.

HTML Paragraphs

HTML paragraphs are defined with the <p> tag.

HTML Headings

HTML headings are defined with the <h1> to <h6> tags. Source: 

http://www.w3schools.com/html/html_intro.asp   (2012)
http://www.html.net/tutorials/html/lesson15.php (2012)
http://www.w3schools.com/html/html_basic.asp (2012)
Powered By Blogger