Knowledge in htmlcode

HTML for Beginners

Hi, You can learn about basics of HTML from the following videos. I am providing the link of the html sections in the following article.If you want me to make a video on any other html element Kindly specify it in the comment section or contact me throgh the mail id:-  techitechnions@gmail.com 1. Installing Text Editor(Brackets) link:-  https://youtu.be/AeumfiTuokM 2. Making proper notes of all the html section link:-  https://youtu.be/MHqW8kOMudU 3. Headings tag link:- https://youtu.be/rkfbIVRppZM 4. Paragraph tag link:- https://youtu.be/Ydl0h5D9BeA 5. Links in HTML link:- https://youtu.be/eBglvaL3gZw 6. Inserting Images in HTML link:- https://youtu.be/fmXL9RCKERk 7. Inline vs Block Elements link:- https://youtu.be/HTVPtuDYK2A 8. Unordered Lists link:- https://youtu.be/c7KSgW_OfXM 9. Ordered Lists link:- https://youtu.be/QjvqrVUzjQM If you liked the video give it a thumbs up and subscribe to my channel Techi Technions

Headings Tag in HTML(Beginners/basics)

The code to use headings tag in html <!DOCTYPE html> <html> <head>     <title>Headings</title>     </head>     <body>     <h1>Headings1</h1>     <h2>Headings2</h2>     <h3>Headings3</h3>     <h4>Headings4</h4>     <h5>Headings5</h5>     <h6>Headings6</h6>          </body> </html> Check the tutorial here link:- https://youtu.be/rkfbIVRppZM

How to insert Images in HTML

This knowledge is about the tag and its attributes. You can view the tutorial here:- link:- https://youtu.be/fmXL9RCKERk

Hypertext Markup Language

Hyper Text Markup Language, used for web development and is very easy for the users to learn. The content covers almost every topic which is required for a beginner to understand HTML as a language. It also has some advanced parts of HTML which are easily understandable and are easy to practice too. Happy Learning!

What is HTML ?

HTML is a Hypertext Markup Language.

What is HTML ?

What is HTML ?

What is XHTML ?

XHTML stands for EXtensible HyperText Markup Language

Html 5 notes for professionals

This pdf file containing the advance knowledge of html5. and this pdf file gives you professional knowledge about html5.

Some basic knowledge about HTML

This file contains all about basics knowledge of HTML which is very important for programmers who are beginners.

HTML5

This is a pdf of HTML5 basic tags. This tags use to comman in any webpages.So you are learn and create to simple statics web pages.html is not a programming language but it is most of use in web pages, simple example any Google pages inspect so you saw the html tags and all pages to create on hatml basics.So if you are interested in computer subject so learn more and more language.

HTML Basic

HTML Basic Examples Don't worry if these examples use tags you have not learned. You will learn about them in the next chapters. ________________________________________ HTML Documents All HTML documents must start with a document type declaration: . The HTML document itself begins with and ends with . The visible part of the HTML document is between and . Example My First Heading My first paragraph.

HTML Background Images

Background Images A background image can be specified on almost any HTML element. To add a background image in HTML, use the CSS property background-image. ________________________________________ Background Image on a HTML element To add a background image on an HTML element, you can use the style attribute: Example Add a background image on a HTML element: Try it Yourself ยป You can also specify the background image in the element: Example Specify the background image in the style element: div { background-image: url('img_girl.jpg');