Learn HTML
Learn HTML
______________________________________________
HTML stands for HyperText Markup Language and is used to create the structure and content of a web page. It is made up of a series of elements, known as tags, which are used to define the different parts of the page. HTML is used to add text, images, videos, and other elements to the page. It is also used to create links between webpages and to add styling to the page, such as colors, fonts, and layout. Learning HTML requires knowledge of the different elements, their properties, and how they work together to create a web page.
Different tags in html :-
<p>, <h1>, <div>, <span>, <a>, <img>, <table>, <ul>, <form>, <video>, <audio>, <canvas>, <header>, <footer>, <nav>, <script>, <article>, <address>, <button>, <svg>, <label>, <select>, <option>, <input>, <textarea>, <style>, <link>, <meta>, <title>, <pre>, <code>, <section>, <em>, <strong>, <i>, <b>.
Structure of HTML :-
HTML documents are made up of a tree-like structure of elements, which are the building blocks of an HTML document. The basic structure of any HTML document consists of two main parts, the head and the body.
The head element contains metadata about the HTML document and is used to provide information about the document, such as its title, author, script and style information, and other important information.
The body element contains all the other elements that make up the contents of the HTML document. This includes the main content of the document, such as headings, paragraphs, lists, images, and other elements.
Comments
Post a Comment