Introduction To HTML What is HTML ?
What is HTML ?
HTML Stands for HyperText Markup Language, where
- HyperText is a term that refers to a link between two web pages
- Text between tags that form the structure is referred to as Markup Language.
HTML,s Advantages
- The learning curve is extremely straightforward (easy to modify).
- Putting together effective presentations.
- We can add references by adding links.
- Documents can be viewed on a variety of systems, including Mac, Windows, Linux, and others.
- By including films, pictures, and audios, you may make it more appealing
- Case- insensitive phrasing
HTML Skeleton
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</html>
HTML Basic
<!DOCTYPE html>
Instruction to the browser about the HTML version.
<html>
- Root element which acts as a container to hold all the cpde
- The browser should know that this is an HTML document
- Permitted content: One head tag followed by one body tag
- Everything written here will never be displayed in the browser
- It contains general information about the document
- Title, definitions of CSS and script sheets
- Metadate(information about the document)
- Everything written here will be displayed in the browser
- Contains text, images, links that can be achieved through tage
- Examples
- O<p> This is our first paragraph.</p>
- O<a href=''http://www.google.com">Go To Google</a>
- O<img src="photo.jpg">
- It is easy to learn and easy to use.
- It is platform-independent.
- Images, videos, and audio can be added to a web page.
- Hypertext can be added to text.
- It is a markup language.
- It is a simple markup language. Its implementation is easy.
- It is used to create a website.
- Helps in developing fundamentals about web programming.
- Boost professional career.
Comments
Post a Comment