Web Technology
Web Technology
2. *Client-Side Technologies:
- Technologies that run on the user’s browser (e.g., HTML, CSS, JavaScript).
- These are responsible for front-end development (what users see and
interact with).
3. Server-Side Technologies
- These run on the server (e.g., PHP, ASP.NET, Node.js).
- Responsible for back-end development (data processing, authentication).
4. Web Browser
- A software application used to access information on the World Wide Web.
- Popular browsers: Google Chrome, Mozilla Firefox, Safari, Microsoft Edge
5. Web Server
- A server that hosts websites and responds to requests from browsers.
- Popular web servers: Apache, Nginx, IIS
- Lists
- Ordered list `<ol> <li>Item</li> </ol>`
- Unordered list `<ul> <li>Item</li> </ul>`
4. Attributes in HTML
- HTML tags can have attributes that provide additional information.
- Example: `<img src="pic.jpg" alt="Picture">`
- `src` is the attribute specifying the image source.
- `alt` is the alternative text if the image cannot be displayed.
5. Forms in HTML
- Used to collect user input.
- Example of a simple form:
```html
<form action="submit_form.php" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br><br>
<input type="submit" value="Submit">
</form>
6. Tables in HTML
- Tables are used to display data in rows and columns.
- Example:
html
<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>John</td>
<td>30</td>
</tr>
</table>
8. HTML5 Features
- New elements like `<header>`, `<footer>`, `<article>`, `<section>`.
- **Multimedia support**: `<audio>`, `<video>` tags.
- Form enhancements: New input types like `email`, `date`, `range`.
9. Responsive Web Design
- Ensures websites are accessible and look good on all devices (desktops,
tablets, phones).
- Achieved through media queries and flexible layouts in CSS.
2. Accessibility
- Ensuring websites are usable by people with disabilities.
- Includes providing alt text for images, keyboard navigation, etc.
4. Web Hosting:
- The service of storing websites on a server, making them accessible on the
internet.
- Common hosting types: Shared Hosting, VPS, Dedicated Hosting, Cloud
Hosting.
These are the key notes for your lessons on Web Technology and Web
Designing using HTML.Let me know if you'd like more details on any specific
topic!