Wednesday, 9 December 2015

#1 HTML Injection - Learn Basic HTML

So guys Lets Continue Our Tutorial On HTML Inection . I am making this tutorial for beginners who dont know what html is and how to make a basic html webpage . and in next tutorial i will tell you about HTML inejection .

BASIC HTML - 

  • What is HTML??


HTML is a client side scripting language . we use it to design webpages . HTML stands for Hyper Text Markup Language. We something called tags <>  in html. to start a tag we write <tagname> and to close it we write </tagname> . Below is Structure of HTML . you must write it in every page :). HTML can be edited in every text editors. and you must save it in .html extension. and you can open it in any web browser.
So make a new file index.html and see the below structure . write it in your file save it and run it in browser .

<html>

    <head>
        <title>Page Title </title>
    </head> 

    <body>
    Tags from below list will be written here :)
    This Section Will Be Displayed in Browser
    </body>

</html>

 See what is displaying the content bitween <body> </body>  is displayed on webpage . and text bitween <title> and </title> tag is your title of page.  so start editing structure Use Below list to discover more tags use them in biween <body> tag . to change title you should change text bitween title tag

List of basic tags :) see them and keep practicing . 

<h1> this is a heading </h1>
<h2> this is sub heading </h2>
<h3> this is minor heading </h3>
<p>  This is for Paragraph </p>
<img src="image name in same directory or link" > this is for image </img>
<a href="link"> to make a link we should use this tag </a>


And Here is the example page

<html>
<head>
<title> HTML Tutorial at Shahid's Workshop </title>
</head>
<body>

<h1> Welcome in Shahids Workshop</h1>
<h2>This is Tutorial on Basic HTML</h2>
<h3>Read This carefully</h3>
<p>This is an paragraph example</p>

</body>
</html>

Thank You For Reading and Learning :) . I Hope this is less time consuming than any where else . Please Leave your Comment If you didnt get something . 

 

Share this


0 Comments

4n0nkh4n. Powered by Blogger.