-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResponsiveness-and-variables.html
43 lines (43 loc) · 1.2 KB
/
Responsiveness-and-variables.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
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsiveness and variables</title>
<link rel="stylesheet" href="responsive.css">
<link rel="stylesheet" href="Responsiveness-and-variables.css">
</head>
<body>
<nav id="nav">
<ul>
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</nav>
<main>
<h1>My somewhat good projects</h1>
<div class="grid">
<div class="item featured">
<h1>Project A</h1>
<button>learn more</button>
</div>
<div class="item">
<h1>project b</h1>
<button>learn more</button>
</div>
<div class="item">
<h1>Project C</h1>
<button>learn more</button>
</div>
<div class="item featured">
<h1>Project D</h1>
<button>learn more</button>
</div>
</div>
</main>
<footer>
<h4>Author:Rakib Talukder</h4>
<p>Credit: Scrimba</p></footer>
</body>
</html>