Posts

Showing posts from May, 2024

FORM STRUCTURE

Image
  FORM STRUCTURE <form>: form controls live inside a <form> element .This element should always carry the action attribute and will usually have a method and ad id attribute too. action: Every form element requires an action attribute. Its value of the URL for the page on the server that will receive the information in the form when it is submitted> method: The form can be sent using one of the following methods: get or post. With the get method, the values from the form are added to the end of the URL specified in the action attribute. With the  Post method, the values   are sent in what is  known as HTTP headers.  <input>: The <input> element creates several different  form controls. The type attribute's value determines what kind of input they will be creating. type="text': When the type attribute has a value of text, it creates single-line text  input. name: When users enter information into a form, the server contro...

Ch-Heading Tags (blog 3)

Image
  IN THIS BLOG WE ARE GOING TO LEARN THE HEADING TAGS Coding  : Output  : Heading tags : It consists of <h1> to <h6> tags. Where <h1> is the largest and <h6> is the smallest, first we will have to write the heading tag <h1> (you can use any heading tag) than write what you want, after writing use (this symbol to close the tag </>) </h1> (close the tag that you have use ex: you had use <h4> tag than close it with </h4> tag). Write this inside the <body> and </body> tags. HOW TO SAVE IT : After writing the coding in notepad (or in any application) click (ctrl + s) to save, after clicking i window will be display. Than select where you want to save the file. Than give a name to your file (for example :- aajcodings), but use the (.html or .htm) extention after you file name ( eg :- aajcodings.html) , than click on the save button . And you file will be saved.

Basic structure of HTML

Image
                                               Basic Structure of HTML Coding You can see the HTML code for the page below. Don't worry about what the code means yet. We start to look at it in more  details on the next blog. Note that the HTML code is in blue, and the text you see on the result part is in black. <html>   <body>     <h1> This is the main Heading </h1>     <p> This text might be an introduction to rest of the web page.      And if the page is a long one it might be split up into several      sub-headings. </p>     <h2> This is a sub-heading </h2>     <p> Many long articles have sub-headings so to help you follow      the structure of what is being written. There may even      sub-sub-headings ...

Introduction to HTML

Image
  HTML, or Hypertext Markup Language, serves as the backbone of the World Wide Web, providing the structure and framework for virtually every webpage on the internet. It's a markup language composed of elements, tags, and attributes, each playing a crucial role in defining and organizing content. Through its simplicity and versatility, HTML empowers developers to create rich, interactive experiences for users across various devices and platforms. From structuring text with headings and paragraphs to embedding multimedia elements like images and videos, HTML enables the seamless integration of diverse content types. Its inherent flexibility allows for easy customization and adaptation, making it an indispensable tool for web designers and developers worldwide. As the cornerstone of web development, HTML continues to evolve alongside emerging technologies, ensuring the web remains a dynamic and vibrant ecosystem for information exchange and innovation. In our upcoming blogs we are go...

Popular posts from this blog

Ch-Heading Tags (blog 3)

Basic structure of HTML

Introduction to HTML