Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Code - List HTML

List Html
List Html

List is a common form used to decipher the list. For example, lists that are used in html is:- List with numbers
  • - List unnumbered (bulleted list)
  • - List definition

Writing sample list :


<html>
<head> <title> example of writing list </ title>
</ head>
    <body>
       <h4> sample list numbers </ h4>
       <ol>
          <li> you </ li>
          <li> I </ li>
          <li> You and I </ li>
       </ ol>
       <h4> example bulleted list </ h4>
        <ul>
           <li> you </ li>
           <li> I </ li>
           <li> You and I </ li>
       </ ul>
</ body>
</ html>

Other examples:


<html> <head> <title> -2 writing sample list </ title> </ head> <body>
     <h4> disc bulleted list </ h4>
          <ul type = "disc">
              <li> he </ li>
              <li> we </ li>
              <li> yes please </ li>
        </ ul>
     <h4> circle bullets list </ h4>
        <ul type = "circle">
              <li> now </ li>
              <li> next </ li>
              <li> what tomorrow yo </ li>
       </ ul>
</ body> </ html>

http://project29-blogku.blogspot.co.id/

Full flash tutorial >> Flash Tutorial


Create Animation || Game || quiz game || animate cc || adobe flash cs 6

Code - Tag Quotation

tag quotation
tag quotation

tag <blockquate>, used to make the most of the quoted text as a block of its own. In general, a browser change the margins for text citations had to separate the surrounding text.

tag <q>, do not do anything special, but by defining as a quote, then used as a style sheet then these quotes can be arranged performatnya by using style sheets.

Example :

<html> 
<body>
The following is the text with a long quotation: 
<blockquote>    Here I will write about the angel    who is known as the angel?    whenever people refer to taste something special angel    people says, he is a creature of God is very beautiful 
</ blockquote>
 <q> This short news </ q>
 <p> There was a heavy rain Sumatra region, and recent rains accompanied by strong winds. Residents are expected to remain at home. </ p> 
</ body>
 </ html>

Web Tutorial || Flash Tutorial || Create Animation and Game || Code

Code - Create Address HTML

Create address code - html
Create address code

Address is one common element within a document. In particular HTML tag address supplied. With this tag, the writing of the address can be standardized.

Begins with the tag <address>, and ends with </ address>. Each line in the writing addresses separated by using tags Reviews.

Examples of writing the <address> :
<html>
<head><title>Create Text Address</titile>
</head>
<body>
    <address>
       A-Flash blogger street<br>
      Number 3<br>
      Japan<br>
    </address>
</body>
</html>

HTML || Javascript || CSS || Flash Tutorial || Animation and Game

Make Horizontal Line and Comments

Make line Horizontal
Make line Horizontal

 

Make Lines Horizontal


A line can be inserted in a web document. is commonly used as a separator between sections or paragraphs.

<hr> tag will be inserted in a web document:
Examples of writing the tag <hr>:
<html>
<head><title> writing tag hr </title>
</head>
    <body>
      welcome to my website
      <hr>
    </body>
</html>


 

Make Comments


In an information document there are some text in the document that serves as a note or comment on the document itself. Note the comments in the document will not be displayed in the browser.
Tags comments can be used to hide some web documents. It could be because there is no certainty of the contents of the document to be published, especially from the legal aspect.

Examples of writing tags comments:


<! -- This is a comment tag -->
<html>
<head> <title> tag makes comments </ title>
</ head>
<body>
<! - This comment will not be visible in your web browser ->
</ body>
</ html>

HTML || Javascript || CSS || Flash Tutorial || Animation and Game

Line Break and Heading

Line Break and Heading
Line Break and Heading

 

LINE BREAK

Line breaks, used to display a new line in a paragraph, then it should use the tag Reviews.
Examples of writing tag <br> :

<!-- Tests br -->
<html>
<head> <title> example replace the line </ title>
</ head>
<body>
Reviews cut in a paragraph Reviews Reviews br tag use.
</ body>
</ html>

HEADING
Heading, widely used for headings. Heading will display a letter or writing become larger or bold.
Writing headings :

<html>
<head>
<title> example heading </ title>
</ head>
<body>
<h1> is heading 1 </ h1>
<h2> This heading 2 </ h2>
<h3> The heading 3 </ h3>
<h4> This heading 4 </ h4>
<h5> This heading 5 </ h5>
<h6> is heading 6 </ h6>
</ body>
</ html>

HTML || JAVASCRIPT || CSS