-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (63 loc) · 2.98 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Mozilla 宣传主页</title>
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+SC:400,700" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Mozilla</h1>
<!-- 插入 <img> 元素,链接至较小的 Firefox 标志。 -->
<img src="images-120w/firefox_logo-120w.png" alt="Firefox logo">
</header>
<main>
<article>
<!-- 插入来自 Bilibili 的 <iframe> 元素 -->
<iframe src="https://www.bilibili.com/video/BV1rs411d7hC?p=2" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" width="400" height="400">
Firefox advertising</iframe>
<h2>自由网络 尽情驰骋</h2>
<p>Mozilla 是一个全球社区,这里聚集着来自五湖四海的 技术人员、思考者、建造者。我们致力于让 Internet 保持活力,保持畅通,人人皆可贡献,人人皆可创造。我们坚信:开放平台的协作对于人的发展至关重要,也决定着我们共同的未来。</p>
<p>更多精彩信息,敬请点击下方图片。<a href="https://www.flickr.com/photos/mathiasappel/21675551065/">小熊猫照片</a>由 Mathias Appel 拍摄</p>
</article>
<div class="further-info">
<!-- 插入包含 srcsets 和 sizes 属性的图像 -->
<a href="https://www.mozilla.org/zh-CN/firefox/new/">
<img srcset="images-120w/firefox_logo-120w.png 120w,
images-400w/firefox_logo-400w.png 400w"
sizes="(max-width: 480px) 120px,
400px"
src="images-400w/firefox_logo-400w.png" alt="Firefox logo">
</a>
<a href="https://www.mozilla.org/">
<img srcset="images-120w/mozilla-dinosaur-head-120w.png 120w,
images-400w/mozilla-dinosaur-head.png 400w"
sizes="(max-width: 480px) 120px,
400px"
src="images-400w/mozilla-dinosaur-head.png" alt="Mozilla dinosaur head">
</a>
<a href="https://addons.mozilla.org/">
<img srcset="images-120w/firefox-addons-120w.jpg 120w,
originals/firefox-addons.jpg 400w"
sizes="(max-width: 480px) 120px,
400px"
src="images-400w/firefox-addons.jpg" alt="Firefox addons">
</a>
<a href="https://developer.mozilla.org/zh-CN/">
<img>
</a>
<div class="clearfix"></div>
</div>
<div class="red-panda">
<!-- 插入照片元素 -->
<picture>
<source media="(max-width: 600px)" srcset="red-panda-portrait-small.jpg">
<source media="(min-width: 601px" srcset="red-panda-1200w.jpg">
<img src="red-panda-1200w.jpg" alt="A red panda hugging a tree.">
</picture>
</div>
</main>
</body>
</html>