美文网首页
2019-03-06

2019-03-06

作者: whamai | 来源:发表于2019-03-06 08:53 被阅读0次

web前端

day 1 and 2

格式

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8“

<title></title>

<head>

<body>

</body>

</head>

</html>

1.相关的基础代码

<table></table>创建表格

<table border="1"></table>创建表格且像素为1

<tr></tr> 必须在table里面

<td></td>必须在tr里面

<th></th>必须在tr里面,且加粗

<h1></h1>一级标题

<td colspan="4"></td>单元格横向4格子

<td rowspan="1"></td>单元格纵向1格

align=“” 靠左,靠右,居中 left right center

style="text-align:right" 文字靠右

<ol></ol> 有序列

<li></li> 序列里面的

<ul></ul>

<u></u> 下划线

<i></i> 倾斜

<b></b>加粗

<del></del>中横线

<a href=""></a>超链接

<img src="url图片地址" alt=“图片加载失败文本内容”>

<br></br>

<span></span>无任何样式的文字注释

* <input type="text" placeholder="请输入内容"

* <button type="button" id="内容">一致内容</button>

width 长

height 高

测试:1.login 登录界面

2.计算器界面

3.表格界面

相关文章

网友评论

      本文标题:2019-03-06

      本文链接:https://www.haomeiwen.com/subject/dmuzuqtx.html