Showing posts with label web development. Show all posts
Showing posts with label web development. Show all posts

Make A HTML Image Tag

With the HTML codings you can do a lot for the web pages. It's simple and easy to set the codings so you can practice yourself. You must memorize the basic tags before codings. The HTML tags begins with <html> and ends with </html>. When you pit any tag, the tag must be into it. 
In the HTML tag the images are shown in the tag <img>. It's so easy to realize the codings with images.

To make this easy just follow the codings...

<html>
<body>

<img scr="nature.jpg" width="250" height="170" />

</body>
</html>


Note: The given picture must have in your computer.


 

How To Make Link Using HTML Coding

You need to set up coding if you want to link your page with another page. In the HTML programming, it is so simple and easy to make a link with another. The linked page or website is in the <a herf=...>. You must do under this rules to do so. To make a link from one website to another using HTML is so easy and simple. Just coding some steps and you will do it easily.

Follow the codings bellow... 

<html>
<body>

<a href =''http://www.freetutorials24.blogspot.com''>This is a link</a>

</body>
</html>


You will able to do so if you practice more and more.



 

HTML Paragraph Tags

To narrate the contains we need paragraph tag and this type of tag is easy to set up in the HTML codings. HTML paragraph tags are so important to make the coding perfect and easy. This tag starts with <p> and ends with </p>. The texts are put between these two tags.

Follow the codings to make it easy...........

<html>
<body>

<p> This is a paragraph tag </p>

</body>
</html>


By practicing more you can also be master with this.


 

Introduction To HTML Heading Tags

Among the HTML codings, HTML Heading is the first and most important to make the contains many seizes. With this tag you can make your writings tiny, small, big, large etc. It's so easy and simple to set up this code in the HTML file. In the HTML file the headings are shown with <h1>----- </h1>,  <h2>-----</h2>,  <h3>-----</h3>,   <h4>-----</h4>,  <h5>-----</h5> and  <h6>-----</h6>.


Follow the coding to make the headings...

<html>
<body>

<h1>This is heading number 1  </h1>
<h2>This is heading number 2  </h2>
<h3>This is heading number 3  </h3>
<h4>This is heading number 4  </h4>
<h5>This is heading number 5  </h5>
<h6>This is heading number 6  </h6>

</body>
</html>

 You can practise yourself to be expert in it.




All HTML Tags

Among all other codings HTML is so easy and simple to learn. Its tags are so important and HTML tags are all for the HTML language. With the HTML codings you can make, seize and arrange the whole page in the website that is the control over the all aspects of the pages. You can also create websites with this codings. Actually it is the most easy and flexible language of all the coding languages. It can easily be controlled within moments. There are lots of HTML tags which are very important to have make a website fully easy and smooth.

 All HTML tags are given below alphabetically....

   Tag-                           Description- 

<!--...-->                       Defines a comment 

<!DOCTYPE>                    Defines the document type

<a>                               Defines a hyperlink 

<abbr>                          Defines an abbreviation or an acronym

<address>                     Defines contact information for the author/owner of a document

<applet>                       Defines an embedded applet

<area>                           Defines an area inside an image-map

<article>                        Defines an article

<aside>                          Defines content aside from the page content

<audio>                         Defines sound content

<b>                                Defines bold text

<base>                          Specifies the base URL/target for all relative URLs in a document

<basefont>                   Specifies a default color, size and font for all text in a document

<bdi>                            Isolates a part of text that might be formatted in a different direction from other text outside it

<bdo>                           Overrides the current text direction

<big>                            Defines big text

<blockquote>               Defines section that is quoted from another source

<body>                         Defines the document's body

<br>                              Defines a single line break

<button>                      Defines clickable button

<canvas>                      Used to draw graphics, on the fly, via scripting (usually JavaScript)

<caption>                    Defines a table caption

<center>                       Defines centered text

<cite>                          Defines the title of a work

<code>                         Defines a piece of computer code

<col>                            Specifies column properties for each column within a <colgroup> element

<colgroup>                   Specifies a group of one or more columns in a table for formatting

<datalist>                     Specifies a list of pre- defined options for input controls

<dd>                            Defines a description/ value of a term in a description list

<del>                            Defines text that has been deleted from a document

<details>                       Defines additional details that the user can view or hide

<dfn>                           Represents the defining instance of a term

<dialog>                       Defines a dialog box or window

<dir>                            Defines a directory list

<div>                           Defines a section in a document

<dl>                             Defines a description list

<dt>                             Defines a term/name in a description list

<em>                           Defines emphasized text

<embed>                     Defines container for an external(non-HTML) applicaton

<fieldset>                    Groups related elements in a from

<figcaption>                 Defines a caption for a <figure> element 

<figure>                       Specifies self-contained content

<font>                         Defines font, color and seize for text

<footer>                      Defines a footer for a document or section

<form>                        Defines an HTML form for user input

<frame>                      Defines a window in a frameset

<frameset>                  Defines a set of frames

<h1> to <h6>              Defines HTML headings

<head>                        Defines information about the document

<header>                     Defines a header for a document or section

<hr>                            Defines a thematic change in the document

<html>                        Defines the root of an HTML document

<iframe>                     Defines an inline frame

<img>                         Defines an image

<input>                       Defines an input control

<ins>                           Defines a text that has been inserted into a document

<kbd>                         Defines a keyboard input

<keygen>                    Defines a key-pair generator field(for forms)

<label>                       Defines a label for an <input> element

<legend>                    Defines a caption for a <fieldset> element

<li>                             Defines a list item

<link>                         Defines the relationship between a document and an external resource

<main>                       Specifies the main content of a document

<map>                        Defines a client-side image-map

<mark>                       Defines marked text

<menu>                      Defines a menu of commands

<menuitem>               Defines a menu item that the user can invoke from a popup menu

<meta>                        Defines metadata about an HTML document

<meter>                       Defines a scalar measurement within a known range

<nav>                         Defines navigation link

<noframes>                Defines an alternate content for the users that don't support frames

<noscript>                   Defines an alternate content for the users that don't support client-side scripts

<object>                      Defines an embedded object

<ol>                             Defines an ordered list

<optgroup>                  Defines a group of related option in a drop-down list

<option>                       Defines an option in a drop-down list

<output>                      Defines the result of calculation

<p>                              Defines a paragraph

<param>                      Defines a parameter for an object

<pre>                            Defines formatted text

<progress>                    Represents the progress of task

<q>                               Defines a short quoatation

<rp>                             Defines what to show in browsers that don't support ruby annotations

<rt>                               Defines an explanation of characters

<ruby>                          Defines a ruby annotation

<s>                                 Defines text that is no longer correct

<samp>                          Defines sample output from a computer program

<script>                         Defines a client side-script

<section>                       Defines a section in a document

<select>                         Defines a drop-down list

<small>                          Defines smaller text

<source>                        Defines multiple media resources for media elements

<span>                            Defines a section in a document

<strike>                          Defines strike through text

<strong>                         Defines important text

<style>                            Defines style information for a document

<sub>                              Defines subscribed text

<summary>                     Defines a visible  heading for a <details> element

<sup>                              Defines superscripted text

<table>                           Defines a table

<tbody>                          Groups the body content in a table

<td>                                Defines a cell in table

<textarea>                      Defines a multiline input control

<tfoot>                           Groups the footer content in table

<th>                                Defines a header cell in table

<thead>                          Groups the header content in  table

<time>                            Defines time

<title>                             Defines a title for the document

<tr>                                 Defines a row in a table

<track>                            Defines text tracks for media element

<tt>                                  Defines teletype text

<u>                                 Defines text that should be stylistically different from the normal text

<ul>                                Defines an unordered list

<var>                              Defines a variable

<video>                          Defines a video or movie

<wbr>                             Defines a possible line break
 

First Step To Make A Website


The matter that comes before to make a website is the coding and HTML is the only and easy way of this matter though there are many coding languages such as CSS, PHP, SQL etc. With the help of HTML you can do a lot foe your site and also the total control by it.