Skip to main content

Posts

Showing posts from 2022

HTML IFRAME

 HTML IFRAME <TAG> <iframe src="your url here" height="your height here" width="your width here"> OUTPUT

IMAGE TAG

 IMAGE <TAG> How to apply image tag on your webpage. <img src=" Enter your url(Uniform resource locator) here. " height=" Enter your height value here. " width=" Enter your width value here. " title=" Enter your image title here ."> EXAMPLE:- <img src=" C:\Users\win-7\Desktop\f.jpg " height=" 250 " width=" 250 " title=" this is my home "> OUTPUT

UN-ORDER LIST

  Unordered HTML List Un-ordered list starts with the  <ul>  tag. Each list item starts with the  <li>  tag. The list items will be marked with bullets (small black circles) by default:

ORDER LIST

  Ordered HTML List  Ordered list starts with the  <ol>  tag. Each list item starts with the  <li>  tag. The list items will be marked with numbers by default:

STYLES ATTRIBUTE

(HOW TO USED HTML STYLE) TEXT-COLOR The html text color code is <h1 style=" color:red ">I AM RED</H1>

HEADING,PARAGRAPH ,BASIC HTML TAG

  We have apply basic mixed tag here.

PARAGRAPH TAG

  <P> is stand for paragraph.Always use opeing tag <p> and closed by </p> 

HEADING TAG

  <H1> Stand for Heading tag is to create the heading on your webpage.It's always response from <h1> to <h6> we always used opening tag <h1> and closing tag </h1> before our heading.

HMTL DECLARATION LAYOUT TAGS

    <!DOCTYPE html>  declaration defines that this document is an HTML doc.   <html>  element is the root element of an HTML page.   <head>  element contains information about the HTML page. <title>  element specifies a title for the HTML page .(which is shown in the browser's title bar or page's tab) <body>  element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.   <h1>  element defines a large heading. <p>  element defines a paragraph.

MY FIRST HTML CODE BELLOW

 <! doctype> <html>                <head>                     <title>elearn999.com</title>                </head> <body> this is my new webpage </body> </html>                                          OUTPUT

HTML LAYOUT DESIGN IMAGE

 

HTML INTRODUCTION

The  HyperText Markup Language  or HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets  (CSS)  and scripting languages such as  JavaScript.  The first version of  HTML  was written by Tim Berners-Lee in 1993. Since then, there have been many different versions of  HTML.  The most widely used version throughout the 2000's was  HTML  4.01, which became an official standard in December 1999.