forked from WTFAcademy/WTF-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<title>Text</title> | ||
</head> | ||
<body> | ||
<h1>主标题</h1> | ||
<h2>顶层标题</h2> | ||
<h3>子标题</h3> | ||
<h4>次子标题</h4> | ||
|
||
<p>我是一个段落,千真万确。</p> | ||
|
||
<p><span>一些文字</span></p> | ||
|
||
Mozilla Foundation<br> | ||
1981 Landings Drive<br> | ||
Building K<br> | ||
Mountain View, CA 94043-0801<br> | ||
|
||
<p>I am <em>glad</em> you weren't <em>late</em>.</p> | ||
|
||
<p>This liquid is <strong>highly toxic</strong>.</p> | ||
<p>I am counting on you. <strong>Do not</strong> be late!</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<title>Hyperlink</title> | ||
</head> | ||
<body> | ||
<p>我创建了一个指向 | ||
<a href="https://wtf.academy/">WTFAcademy 主页</a>的超链接。 | ||
</p> | ||
|
||
<p>我创建了一个指向 | ||
<a href="https://wtf.academy/" title="面向Web2开发者的Web3开源学院。">WTFAcademy 主页</a>的超链接。 | ||
</p> | ||
|
||
<a href="https://wtf.academy/">外部链接</a> | ||
|
||
<a href="#什么是超链接?">相同页面链接的描述</a> | ||
|
||
<a href="https://wtf.academy/"> | ||
<img src="https://wtf.academy/img/wtflogo.png" alt="WTFAcademy logo" /> | ||
</a> | ||
|
||
<a href="mailto:nowhere@mozilla.org">Send email to nowhere</a> | ||
|
||
<a href="tel:+491570156">+49 157 0156</a> | ||
|
||
<a href="./img/6-2.png" download="wtflogo">下载 WTFAcademy logo</a> | ||
</body> | ||
</html> |