DragonLin


注:学习笔记基于小甲鱼学习视频,官方论坛: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>

以下是运行结果:
在这里插入图片描述

重点知识记录

img标签:
img标签有两个必需的属性:src 属性 和 alt 属性。
a标签:
在这里插入图片描述

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-05-18
  • 2021-10-10
  • 2021-06-05
  • 2021-06-29
  • 2022-01-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-03
  • 2022-02-23
  • 2022-12-23
  • 2021-12-10
相关资源
相似解决方案