码迷,mamicode.com
首页 > Web开发 > 详细

html的相关基础元素(一)

时间:2015-12-24 00:21:09      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:

(1)html的基本结构:

<html>
<head>
<title>Hello!</title>
</head>
<body>
<font style="font-size:70px" color=red>Hello,world!</font></body>
</html>
(2)html的字体属性:
<font size="">字体标记</font>
size的大小只能从1至7,若想使字体更大,就要使用css的style="font-size:"来设定
html的字符实体:
< &lt
空格 &nbsp
> &gt
相关字符实体都可以在w3c中查询到

(3)html的超链接:
<!--在新的空白页面中打开超链接-->
<a href="" target="_blank"></a>
<a href="mailto:邮箱地址"></a>

(4)代码如下:
<body>
<b>第一行文字</b>
<p><font color=#ffff00>第二行文字</font></p>
<font size=7>第三行文字</font>
<br/>
<font size=1>第四行文字</font>
<br/>
<font size=7>&copy;&pound;&amp;&reg;</font>
<a href="http://www.baidu.com" target="_blank">baidu</a><!--在一个全新的空白页面中打开-->
<a href="http://www.baidu.com" target="_self">baidu</a><!--在当前页面中打开,替换当前页面--><br/>
<a href="mailto:gloride@163.com">给管理员写信</a><br/>
<img src="https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo/logo_white_fe6da1ec.png" alt="A beautiful clock" border=1 width=600px/>
<p>指定宽度后,高度会随图片的比例变小</p>

<table border=1 width=500px align="center">
<tr><td>1</td><td>2</td><td>3</td></tr>
</body>
 

html的相关基础元素(一)

标签:

原文地址:http://www.cnblogs.com/bingningran/p/5071560.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!