-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb_development.html
33 lines (31 loc) · 1.39 KB
/
web_development.html
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
<!-- Part of No.3 Question // Simple Blog-Page ---- including (index.html) file-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Development</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<nav class="navbar">
<a href="index.html" class="active">Home</a>
<a href="web_development.html">Web Development</a>
<a href="web-design.html">Web Design</a>
</nav>
</header>
<section class="home">
<div>
<h1>Web Development</h1>
<p align="justify">Web development, also known as website development, refers to the tasks associated with creating, building, and maintaining websites and web applications that run online on a browser. It may, however, also include web design, web programming, and database management. Web development is closely related to the job of designing the features and functionality of apps (web design). The term development is usually reserved for the actual construction of these things (that is to say, the programming of sites).</p>
</div>
<div>
<img src="stu2.jfif" alt="student-photo">
</div>
</section>
<footer>
<a href="#">Copyright © 2024 All Right Reserved</a>
</footer>
</body>
</html>