console
var cats = 【"英短","美短","布偶"】;
console.log(cats);
<!doctype html>
<html>
<head>
<title> Yim's Practice</title>
</head>
<body>
<h1>
Hello World!
</h1>
<p>
It's a practice of HTML and JavaScript~<br>
Let's begin!<br>
Now, I'd like to emphasize a <em>word</em>.<br>
Hey, can this <strong>word</strong> be bold?
</p>
<p>
It's time to start a new paragraph here.<br>
<a href="http://www.4399.com">Take me to another website!</a><br>
<a href="index.html">This code could take me to a local file.</a>
</p>
<p>
<strong>Image!</strong><br><br>
<img src="http://img1.3lian.com/img013/v2/46/d/61.jpg"width="400"><br>
炒鸡可爱的猫咪!!!嘻嘻~<br>
</p>
<p>
<strong>How to add a list?</strong><br><br>
<em>ordered list</em>
<ol>
<li>Yim</li>
<li>mm</li>
<li>bb</li>
</ol>
<em>unordered list</em>
<ul>
<li>Yim</li>
<li>mm</li>
<li>bb</li>
</ul>
<em>nested list</em>
<ul>
<li>Yim喜欢吃什么?</li>
<ol>
<li>Sushi & Sashimi</li>
<li>Oysters</li>
<li>French Food</li>
<li>……</li>
</ol>
</ul>
<ul>
<li>Yim喜欢听什么歌?</li>
<ol>
<li>Rock</li>
<li>Classic</li>
<li>Pop</li>
<li>……</li>
</ol>
</ul>
</p>
<p>
<strong>Arrays</strong><br>
</p>
</body>
</html>