转载请注明出处:http://blog.csdn.net/iwanghang/article/details/76522043
觉得博文有用,请点赞,请评论,请关注,谢谢!~
8月份了,换工作有2个月了,总算平静下来心气~~有心思学习了~~
作为Android程序员,如果说,学点PHP可以自己调试接口测试APP,那么学点前端就可以在APP里嵌套HTML5页面~~
这是我的一点点想法,也是咨询过大神,在沈阳这样的新一线城市,面向工资而论,相对比较好的学习方向。
下面是我第一天的学习比较,一点点来吧,从熟悉HTML开始,先把基础知识撸一遍,先写几篇HTML+CSS~~
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>第一天-标准结构常用标签</title> </head> <body> 123<br> <b>b标签-加粗</b><br> <i>i标签-斜体</i><br> <u>u标签-下划线</u><br> <s>s标签-删除线</s><br> sup上标<sup>2</sup><br> sub下标<sub>1</sub><br> <font size="1">font size="1"</font><br> <font size="2">font size="2"</font><br> <font size="3">font size="3"</font><br> <font size="4">font size="4"</font><br> <font size="5">font size="5"</font><br> <font size="5" color="red" face="黑体">font size="5" color="red" face="黑体"</font><br> <font color="#0000ff">font color="#0000ff"</font><br> <!-- 以下是分割线 hr 的两种写法 --> <hr size="5" width="100" noshade="noshade"> <hr size="50%" width="50%" noshade="noshade"> <p>p标签</p> <p align="center">p align="center"</p> <p align="right">p align="right"</p> <p align="left">p align="left"</p> <hr> <h1 align="center">h1 align="center"</h1> <h2>h2</h2> <h3 align="right">h3 align="right"</h3> <h4>h4</h4> <h5>h5</h5> <hr> <a href="https://www.baidu.com/">百度</a><br> <!-- 以上是百度跳转链接 --> <!-- html实体 --> <!-- < 小于号 < < > 大于号 > > & 和号 & & " 引号 " " ' 撇号 ' (IE不支持) ' ¢ 分(cent) ¢ ¢ £ 镑(pound) £ £ ¥ 元(yen) ¥ ¥ € 欧元(euro) € € § 小节 § § © 版权(copyright) © © ® 注册商标 ® ® ™ 商标 ™ ™ × 乘号 × × ÷ 除号 ÷ ÷ --> 1<2<br> 商标™<br> 后面4个空格 。<br> </body> </html>
上面是源码,下面是页面:
123
b标签-加粗
i标签-斜体
u标签-下划线s标签-删除线
sup上标2
sub下标1
font size="1"
font size="2"
font size="3"
font size="4"
font size="5"
font size="5" color="red" face="黑体"
font color="#0000ff"
p标签
p align="center"
p align="right"
p align="left"
h1 align="center"
h2
h3 align="right"
h4
h5
百度
1<2
商标™
后面4个空格 。
转载请注明出处:http://blog.csdn.net/iwanghang/article/details/76522043
欢迎移动开发爱好者交流
沈阳或周边城市公司有意开发Android,请与我联系
联系方式
微信:iwanghang
QQ:413711276
邮箱:iwanghang@qq.com
沈阳或周边城市公司有意开发Android,请与我联系
联系方式
微信:iwanghang
QQ:413711276
邮箱:iwanghang@qq.com
觉得博文有用,请点赞,请评论,请关注,谢谢!~