zoukankan      html  css  js  c++  java
  • 2014年11月17号------html起始

     

    <!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <!--文档的标题-->
    </head>
    <body bgcolor="#FF0000" background="360软件小助手截图20141116110258.png" text="#FFFFFF" topmargin="222" leftmargin="90" bottommargin="23" rightmargin="43" >
    <!-- bgcolor背景颜色,background背景图片,text文本颜色,topmargin上页边距,bottommargin下页边距,leftmargin左页边距,rightmargin右页边距,-->
    hello</br> world !<!--/br换行-->
    <font color="#00FF00" size="+3" face="Times New Roman, Times, serif"><b>你好</b>你好</font>
    <!--font字体控制,color字体颜色,face字体,size字体大小-->
    <i>倾斜</i></br>
    <u>下划线</u></br>
    <srrong>加粗<></br>
    <center>居中</center></br>
    <em>&nbsp;倾斜&nbsp;</em></br>
    <b>&nbsp;</b></br><!--&nbsp;也可以按ctrl+shift+空格加空格-->
    </body>
    </html>

     

    HTML语言

    一:序

    Html静态网页,hyper text markup,超文本标记语言

    Css 网页美化

    Javascript 脚本语言

    二:html的介绍

    <!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"> --这一行可以不写

    <head>--网页上的控制信息

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>页面标题</title>

    </head>

    <body>

    页面要显示的内容

    </body>

    </html>--结束标签

     

     

     

     

  • 相关阅读:
    计算机硬件知识整理
    cf689d ST表RMQ+二分
    hdu5289 ST表+二分
    hdu5443 ST表裸题:求区间最大
    poj3264 倍增法(ST表)裸题
    cf932d 树上倍增
    zoj3195 联通树上三个点的路径长
    hdu6107 倍增法st表
    hdu2586 lca倍增法
    poj1470 LCA倍增法
  • 原文地址:https://www.cnblogs.com/9999w/p/4102824.html
Copyright © 2011-2022 走看看