HTML Basic

TASK 1: HTML BASIC

Every webpage written by language HTMl .
HTML include :text,paragraphs,headings,images and links.
HTML stands for HyperText Markup Language .
TAG:
<!DOCTYPE html>: on the frist line .this tag tells the browser what language it’s reading.
<html>   </html> : Everything in our HTML file will go between the opening <html> and closing</html> tags
<head>   </head>   and  <title   </title> : The head contains information about your HTML file, like its title. The title is what we see in the browser’s title bar or page tab.
<body> </body> :The body is where you put your content, such as text, images, and links. The content in the body is what will be visible on the actual page. The body goes inside the <html> tags, right after the <head> tags.
<p> </p> : insert text.
<h> </h> : size text
<strong> </strong> : tag made our text bold
<a> </a> : The tag a element used to create links.
similar : <a href=” link ” > text </a>
<im src = ” image address ” /> :The img element has an attribute inside
the opening <img> tag named src. The src attribute has the address of the image.

Nhận xét