HTML标题,头部,链接,图像
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>imagetest</title><!--浏览器页面标题-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="main.js"></script>
<title>image test</title>
</head>
<body>
<h1><b>image test</b> </h1><!--<b>文本</b>对文本进行加粗-->
<img src = "imagetest.jpg" width = "500" height="240" alt = "imagetest.jpg">
<!--<img>为定义图像的标签 width为图片的高,height为图片的宽-->
<!--src为存储图像的地址--><!--alt属性用来为图像定义一串可替换的字符-->
<br>
<a href="http://www.baidu.com" style="text-decoration: none">百度一下</a>
<!--<a herf>为定义一个链接的标签,style = "text-decoration:none"取消下划线-->
</body>
</html>