-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·51 lines (46 loc) · 1.68 KB
/
index.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
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS MEDIA QUAYR</title>
<link rel="stylesheet" href="./asset/style.css">
</head>
<body>
<header>
<h1>Our Starff</h1>
<nav>
<a href="#profile1">Joe</a>
<a href="#profile2">Jane</a>
<a href="#profile3">Michael</a>
</nav>
</header>
<main>
<article id="profile1" class="card">
<figure>
<img src="./asset/images/pexels-christina-morillo-1181677.jpg" alt="Jane Dev Rel" width="500" height="333">
<figcaption>Joe Coder</figcaption>
</figure>
<p><q>I code Staff</q></p>
</article>
<article id="profile2" class="card">
<figure>
<img src="./asset/images/pexels-christina-morillo-1181278.jpg" alt="Joe Coder" width="500" height="333">
<figcaption>Jane <span class="nowrap">Dev Rel</span></figcaption>
</figure>
<p><q>I Design Staff</q></p>
</article>
<article id="profile3" class="card">
<figure>
<img src="./asset/images/pexels-hitesh-choudhary-879109.jpg" alt="Matt" width="500" height="333">
<figcaption>Michael</figcaption>
</figure>
<p><q>I Teach Staff</q></p>
</article>
</main>
<footer>
<p>© Milly<span class="copy--x">X</span><span class="copy--name"><sup>Code</sup></span>.</p>
</footer>
</body>
</html>