What is HTML?
HTML, also known as Hypertext Markup Language, is a specific markup language. It is a combination of markup symbols and codes, used to create a web page on World Wide Web. So, every web page is written in HTML code.
HTML determines how will web browser display text and images on a web page. Web browsers use HTML tags, but they do not display them. Every HTML tag contains an opening tag (name of attributes) and a close tag (a forward slash).
Topics
- webpage layers
- CSS
- JavaScript
Video summary
This video discusses the three layers that make up a typical webpage - the content layer, the presentation layer, and the behavior layer. It explains that CSS provides the presentation layer by defining the visual style of webpages, while JavaScript handles the behavior layer by adding interactivity to the page. HTML is described as the language that provides the content layer and forms the structural foundation of a webpage. The video also introduces the concept of hypertext and markup languages, and explains that HTML is the markup language used by browsers to present information to users. It further explains the importance of HTML in web development and teaches the basics of HTML structure and formatting. The video concludes by mentioning that CSS can be used to enhance the visual appearance of a webpage.
Frequently Asked Questions
How can I change the font in HTML?
In order to change the font in HTML, you will need to use the style attribute. Within the style attribute, you will need to use the font-family property.
How can I add CSS to HTML?
You can add CSS to HTML by using the style tag in the head section of the HTML document. You can also add CSS to HTML by using the link tag in the head section of the HTML document.
How can I add an image with HTML?
You can add an image with HTML by using the tag and replacing “image URL” with the URL of the image you want to add.
How can I add an image with HTML?
You can add an image with HTML by using the tag and replacing “image URL” with the URL of the image you want to add.