Introduction to Web Technology
Introduction to Web Technology
Libraries:
1. React.js
2. jQuery
3. Angular
4. Lodash
5. D3.js
Databases:
1. MySQL
2. MongoDB
3. PostgreSQL
4. SQLite
5. Firebase
< html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Welcome to HTML</h1>
<p>This is a paragraph.</p>
</body>
</html>
Features of HTML
1. Platform independent.
2. Easy to learn and use.
3. Supports multimedia integration.
4. Enables hyperlinking to connect pages.
5. Forms the backbone of web pages.
HTML forms are used to collect user input and send it to the server for
processing. A form is created using the <form> tag. Ten common form
elements and their syntax are listed below:
1. Container Tags: These tags have an opening and closing pair, e.g.,
<div>...</div>.
2. Empty Tags: These tags do not have a closing pair, e.g., <img
src="image.jpg">.
Example:
html
<p>This is a container tag.</p>
<img src="image.jpg" alt="Example"> <! This is an empty tag >
Layout of HTML
html
<header>
<h1>Website Header</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
<main>
<section>
<h2>Main Content</h2>
<p>This is the main section.</p>
</section>
</main>
<footer>
<p>Footer Information</p>
</footer>
Uses:
Types of CSS
3. External CSS: Stored in a separate file with a .css extension and linked
to the HTML.
html
<link rel="stylesheet" href="styles.css">
Definitions