-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResponsive Web Design Example.html
More file actions
32 lines (32 loc) · 1.01 KB
/
Responsive Web Design Example.html
File metadata and controls
32 lines (32 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Responsive Web Design Example</title>
<link rel="stylesheet" href="Responsive Web Design Stylesheet.css">
</head>
<body>
<header>
<h1>Responsive Design Example</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Introduction to Responsive Design</h2>
<p>This example demonstrates the principles of responsive design, including fluid layouts, flexible images, and media queries.</p>
<img src="img.jpg" alt="Example Image">
</section>
</main>
<footer>
<p>Designed by: Dr. Farshid Keivanian</p>
</footer>
</body>
</html>