HTML
- About n factor of friends on Facebook - Mark Z.
- Learn HTML in 1 hour
a) HTML 5 tag identifier
<!DOCTYPE html>
b) Each html has a head and body under html tags, like:
<html>
<head> </head>
<body> </body>
</html>
c) Install Visual studio and in extentions install "Live Server". After from File ->Preferences - Settings -> Extentions -> Choose Live Server -> Browser to open Chrome -> Right Click on Index Html -> Open in live server
d) title and header tags- a title is added in head
<head>
<title> Title </title>
</head>
- headers tags are added in the body
<body>
<h1>test</h1>
</body>

Comentarii
Trimiteți un comentariu