Curriculum
Course: Click Code Connect Grade 7
Login
Text lesson

Defining HTML

HTML, or Hypertext Markup Language

 

HTML, or Hypertext Markup Language, is the standard language for creating or desining web pages. It uses HTML tags and attributes to describe the structure and formatting of a web page. 

HTML consists of various elements, that are responsible for telling search engines how to display page content. For example, headings, lists, images, links, and more.

 

HTML Example

<!DOCTYPE html>
<html> <head> <title>My First HTML Code</title> </head> <body> <h1>Welcome To Learnly</h1>
<h1>Welcome To Learnly</h1>
<p>Hello Students</p> </body> 
</html>