0
I'm trying my best but don't seem to get the basic structure of HTML. Can someone help me out?
3 Respuestas
0
Hi! Here basic structure of HTML. What you dont understand?
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div> </div>
<p> </p>
</body>
</html>
0
You know when you're in hot sun light you put on a cap telling people its hot.
in html,
<!doctype html> does the same but rather under the browser it put its doctype cap saying its html5.
now, now you have a head, if i [another person] see your head i know
-its you, your name and you have a brain i can't see but know of, in your brain we have
> your intellect and
> languages u speak.(just a few)
in html,
we head the <head> and from the head the browser (and server) [another computer] can tell the :
> page title, its name
<title></title>,
then the brain (not shown)
> the page intellect - how its scale to fit the screen widths
<meta name="viewport" ...>
> And also, the language of the page
<meta lang="en">
<meta charset="UTF-8" >
0
then your body,
> the chest = <header>
> the stomach = <article>
> the hands = <aside>
> the foot = <footer>
In short, html is a person standing there b4 you.
Well just keep writing the codes, it with fine its place.