-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (69 loc) · 3.11 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Mozilla splash page</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Mozilla</h1>
<!-- insert <img> element, link to the small
version of the Firefox logo -->
<img src="img/firefox_logo-only_RGB.png" alt="site-logo">
</header>
<main>
<article>
<!-- insert iframe from youtube -->
<iframe style="border: 0;" width="400" height="315" src="https://www.youtube.com/embed/ojcNcvb1olg" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<h2>Rocking the free web</h2>
<p>Mozilla are a global community of technologists, thinkers, and builders, working together to keep the Internet alive and accessible, so people worldwide can be informed contributors and creators of the Web. We believe this act of human collaboration across an open platform is essential to individual growth and our collective future.</p>
<p>Click on the images below to find more information about the cool stuff Mozilla does. <a href="https://www.flickr.com/photos/mathiasappel/21675551065/">Red panda picture</a> by Mathias Appel.</p>
</article>
<div class="further-info">
<!-- insert images with srcsets and sizes -->
<a href="https://www.mozilla.org/en-US/firefox/new/">
<img
srcset="img/firefoxlogo120.png 120w, img/firefoxlogo400.png 400w"
sizes="(max-width: 500px) 120px, 400px"
src="img/firefoxlogo400.png"
alt="firefox_logo-only_RGB">
</a>
<a href="https://www.mozilla.org/">
<img
srcset="img/mozilla-dinosaur-head120.png 120w, img/mozilla-dinosaur-head400.png 400w"
sizes="(max-width: 500px) 120px, 400px"
src="img/mozilla-dinosaur-head400.png"
alt="mozilla-dinosaur-head">
</a>
<a href="https://addons.mozilla.org/">
<img
srcset="img/firefox-addons120.png 120w, img/firefox-addons.jpg 400w"
sizes="(max-width: 500px) 120px, 400px"
src="img/firefox-addons.jpg"
alt="firefox-addons">
</a>
<a href="https://developer.mozilla.org/en-US/">
<img
srcset="img/mdn.svg 120w, img/mdn.svg 400w"
sizes="(max-width: 500px) 120px, 400px"
src="img/mdn.svg"
alt="mdn">
</a>
<div class="clearfix"></div>
</div>
<div class="red-panda">
<!-- insert picture element -->
<picture>
<source media="(max-width: 599px)" srcset="img/red-panda600.png">
<source media="(min-width: 600px)" srcset="img/red-panda1200.png">
<img
src="img/red-panda1200.png"
alt="red-panda">
</picture>
</div>
</main>
</body>
</html>