-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-design.html
33 lines (32 loc) · 1.76 KB
/
web-design.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 Design</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 Design</h1>
<P align="justify">Web designing is the process of planning, conceptualizing, and implementing the plan for designing a website in a way that is functional and offers a good user experience. User experience is central to the web designing process. Websites have an array of elements presented in ways that make them easy to navigate.</P>
<p align="justify">A good website is one that displays a careful balance between appearance and functionality. When our website is aesthetically pleasing but fails to offer the information or help your audience with what it looks for, the aesthetics cannot make up for the lack of functionality and vice versa. Therefore, web design comprises two broad key elements—aesthetic or visual elements and functional elements—that are of equal importance to make your website stand out.</p>
</div>
<div>
<img src="stu1.jfif" alt="student-photo">
</div>
</section>
<footer>
<a href="#">Copyright © 2024 All Right Reserved</a>
</footer>
</body>
</html>