注:学习笔记基于小甲鱼学习视频,官方论坛: https://fishc.com.cn/forum.php
官方资料
鱼C课程案例库:https://ilovefishc.com/html5/
html5速查手册:https://man.ilovefishc.com/html5/
css速查手册:https://man.ilovefishc.com/css3/
学习正文
img标签:https://man.ilovefishc.com/pageHTML5/img.html
a标签:https://man.ilovefishc.com/pageHTML5/a.html
<!DOCTYPE html>
<html>
<head>
<title>第二个程序</title>
</head>
<body>
<h1>Hello World</h1>
<img alt="FishC-LOGO" src="FishC.png" width="256px" height="256px"> <!--px为像素点-->
<a href="https://fishc.com.cn/forum.php">这是url上显示的文字,同时在该窗口中打开url</a>
<a href="https://fishc.com.cn/forum.php" target="_blank">在新的窗口中打开url</a>
<p>I love FishC.com!</p>
</body>
</html>
以下是运行结果: