HTML TUTORIAL
Course Content
-
1. Learn HTML In One Video
Free YouTube Video
-
2. Learn JavaScript In One Video In Hindi (2018)
Free YouTube Video
-
3. Python Tutorial For Beginners In Hindi (With Notes)
Free YouTube Video
-
4. Python Programming Course in Hindi (Advanced)
Free YouTube Video
-
5. Web Scraping Tutorial using Python and BeautifulSoup
Free YouTube Video
-
6. JavaScript Registration Form Validation - हिंदी में (Latest Tutorial 2019)
Free YouTube Video
-
7. Learn Bootstrap In Hindi In One Video - हिंदी में (Latest Tutorial 2019)
Free YouTube Video
-
8. C Language Tutorial For Beginners (With Notes)
Free YouTube Video
-
9. Learn Php In One Video In Hindi - हिंदी में (Latest PHP Tutorial 2018)
Free YouTube Video
-
10. Login And Registration Form Using Php & MySQL [Php Login System In Hindi]
Free YouTube Video
-
11. C++ Tutorial For Beginners: Learn C Plus Plus In Hindi
Free YouTube Video
-
12. Learn Python In Hindi In One Video - हिंदी में (Latest Tutorial)
Free YouTube Video
-
13. Learn jQuery In Hindi In One Video - हिंदी में (Latest Tutorial 2018)
Free YouTube Video
-
14. C Programming Tutorial For Beginners: Learn C In Hindi
Free YouTube Video
-
15. CSS 3 Tutorial For Beginners: Learn CSS In One Video In Hindi
Free YouTube Video
-
16. Android Development Tutorial in Hindi
Free YouTube Video
-
17. Git & GitHub Tutorial For Beginners In Hindi - हिंदी में (2019)
Free YouTube Video
-
18. 15 Minute Python Tutorial For Beginners In Hindi (Full & Complete Crash Course)
Free YouTube Video
-
19. Create A Responsive Website Using HTML, CSS And Bootstrap 4 In Hindi
Free YouTube Video
-
20. Login And Registration Form Using Php & MySQL [Php Login System In Hindi]
Free YouTube Video
-
21. Linux Tutorial For Beginners in Hindi
Free YouTube Video
-
22. Numpy Tutorial in Hindi
Free YouTube Video
-
23. How To Make a WordPress Website | Wordpress Tutorial for Beginners | Elementor Tutorial In Hindi
Free YouTube Video
-
24. Learn Python Programming For Free | Python Programming Tutorial In Hindi
Free YouTube Video
-
25. Java tutorial in hindi
Free YouTube Video
-
26. Learn JavaScript In One Video In Hindi (2020)
Free YouTube Video
-
27. Php Tutorial for Beginners in Hindi with MySQL Project
Free YouTube Video
Learn HTML In One Video
Kickstart your html by learning it in hindi
Hey whats up! you wanna know about HTML 5 right?
Here you go !
HTML stands for Hyper Text Markup Language
~ A language used for describing Web pages using ordinary text.
~ It forms the basic Structure of any website
HTML Files
~ Every Web page is a Html file. Each Html file is just a plain text file with ".html" file extension
HTML Tags
~ Every Html file is made up of numerous HTML Tags.
~ Html tags are hidden keywords within a Web page that defines format of that particular Web Browser.
~ Most tags have two parts namely 'Closing Tag' and 'Opening Tag'. (Note that closing tag has the same text as the opening tag but has additional forward slash / character.
Essential Html Tags :-
1. <html> </html>
All tags fall in between the html tags. It defines the document as Web page.
2. <head> </head>
The header contains information like title of the document that won't appear on actual page.
3. <title> </title>
The title defines the title that will appear in the title bar of the Web browser.
4. <body> </body>
The body tags contain all the visible content of the page including all images, links, etc.
Basic Tags-
1. Headings and Subheadings
<h1> A heading </h1>
There are 6 levels of headings available from smallest to largest. ( h1 to h6)
2. Paragraphs
<p> Some text </p>
3. Links
<a href = "URL" </a>
4. Image
<img src = "photo.jpg">
Tag Attributes
Attributes helps one to customise a tag and are defined within the opening tag. For Example - <ol type = "a">
ol stands for Ordered list and ul for Unordered List
~ Attributes are often assigned a value using the equal sign, such as width = 65%
~ Break Tag
<br> Tag is used for styling. In most cases it's preferred to use CSS and Java for Styling.
~ Comment Tag
It's not visible on the actual page but remains saved in the language itself.
<!--- this is a comment --->
~ Form tag- It is used for adding a special Form to the Web page.
<form>
Enter your name : <input type = 'text'/>
<form>
Similarly there are also other tags like <table> tags used to form a table with table row and table headings. Caption tags, Div Tags, Meta tags, etc.
We can also link 'heads tag' to external CSS easily. You can prefer other 'Sublime Text' or 'Atom Editor' to make Coding in Html a fun rather than using Notepad for Coding.
Comments
Post a Comment