HTML 基础

头部声明:

<!DOCTYPE html>


添加标题:

<head> 

        <title> My Website </title>

</head>


添加图片:

<img src="url" />


添加链接:

<a href="url"> This is a link </a>


使用图片作为链接:

使用嵌套,然后用图片来代替本来在<a></a>中间的内容

<a href="url">
<img src="url" />

</a>


格式:

<center> </center>           

<p align="left"> </p>

<p align="right"> </p>


原文地址:https://www.cnblogs.com/Stomach-ache/p/3703266.html