-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHTML-features-elements-resources.html
More file actions
34 lines (34 loc) · 1.88 KB
/
HTML-features-elements-resources.html
File metadata and controls
34 lines (34 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<title>HTML Features, Elements, and Resources</title>
</head>
<body>
<h1 style="text-align: center;">HTML Features and Elements</h1>
<p> </p>
<p><strong>Features of HTML:</strong></p>
<ul>
<li>It is easy to learn and easy to use.</li>
<li>It is platform-independent.</li>
<li>Images, videos, and audio can be added to a web page.</li>
<li>Hypertext can be added to the text.</li>
<li>It is a markup language.</li>
<li>It is a simple markup language. Its implementation is easy.</li>
<li>It is used to create a website.</li>
<li>Helps in developing fundamentals about web programming.</li>
<li>Boost professional career.</li>
<li>HTML can only create static web pages. For dynamic web pages, other languages have to be used.</li>
<li>A large amount of code has to be written to create a simple web page.</li>
<li>The security feature is not good</li>
</ul>
<p> </p>
<p><strong>Elements of HTML:</strong></p>
<p>An element is a part of a webpage. In XML and HTML, an element may contain a data item or a chunk of text or an image, or perhaps nothing. A typical element includes an opening tag with some attributes, enclosed text content, and a closing tag. Elements and tags are not the same things. Tags begin or end an element in source code, whereas elements are part of the API that interacts with the HTML document displaying the page in the browser.</p>
<p> </p>
<p><strong>HTML Resources:</strong></p>
<ul>
<li><a href="https://www.w3schools.com/html/html_intro.asp">Introduction to HTML (w3schools.com)</a></li>
<li><a href="https://www.codecademy.com/learn/learn-html"> Codecademy HTML Course</a></li>
</ul>
</body>
</html>