-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1_HelloWorld.html
More file actions
27 lines (23 loc) · 794 Bytes
/
1_HelloWorld.html
File metadata and controls
27 lines (23 loc) · 794 Bytes
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
<!-- DOCTYPE Shows that this code is written in HTML5.
1. The <html> element represents the root of an HTML document.
2. The <head> element represents a collection of metadata for the Document.
3. The title element represents the document's title or name.
4. The <body> element represents the content of the document.
Body tag contains all visible contents of page.
5. HTML is made up of elements.
Element is an individual component of HTML.
Element will have opening and closing tag.
opening tag <>
closing tag </>
6. *Some elements are stand-alone (self-closing).
7. Attributes are in name-value pair.
-->
<!DOCTYPE html>
<html>
<head>
<title>Nikita's Website</title>
</head>
<body>
Hello World
</body>
</html>