Skip to content

Commit

Permalink
Add demo
Browse files Browse the repository at this point in the history
  • Loading branch information
holazz committed Oct 7, 2022
1 parent 0717381 commit 9613bda
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
25 changes: 25 additions & 0 deletions 03_Text/index.html
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>
28 changes: 28 additions & 0 deletions 06_Hyperlink/index.html
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>

0 comments on commit 9613bda

Please sign in to comment.