-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML.html
More file actions
50 lines (29 loc) · 1.93 KB
/
Copy pathHTML.html
File metadata and controls
50 lines (29 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Notes For HTML
The <head> element is a container for metadata pertaining to the HTML document itself, and should be placed between the opening <html> tag and the opening <body> tag.
Head elements can contain:
Titles
Scripts (a computer program that is to be run by the browser)
File attachments (such as CSS files, JavaScript files or even custom fonts)
Character encoding
Meta data
The head element is typically placed near the top of an HTML file.
EMBEDDED CONTENT
To embed means to fix something inside another thing. Content from another source that is included as part of a page is referred to as “embedded content.” This typically refers to content that exists on another website.
A common example is an embedded video. This would be like taking a video from YouTube and displaying it on your website.
The content placed between <body> and </body> tags makes up most of the content on the page. It consists of nearly anything the developer can dream of, such as: embedded video, images, text, animation, tables of data, advertisements, even music. The sky’s the limit, but within the body tag is where you'll place it.
Here is an example:
<body>
this is where the content of the page goes. It can be text, images, videos, or anything else you want to include on your webpage.
</body>
*// The Basic Structure of an HTML Document*
<!DOCTYPE html>
<html lang="en"></html>
<head>
<title>My First HTML Page</title>
The content placed between <body> and </body> tags makes up most of the content on the page. It consists of nearly anything the developer can dream of, such as: embedded video, images, text, animation, tables of data, advertisements, even music. The sky’s the limit, but within the body tag is where you'll place it.
<meta charset=""utf-8"
</head>
<body>
this is where the content of the page goes. It can be text, images, videos, or anything else you want to include on your webpage.
</body>
</html>