当前位置:   article > 正文

Android之Web篇:Day01Html与Css基础入门_1024网址

1024网址

Day01 html与css基础入门

1.html的常见标签和实战

1.1 a标签

  1. <a href="https://www.baidu.com" target="_blank">点我送福利哦!</a>
  2. // target属性值_blank表示另取空白页打开网页,用new有同样的效果

1.2 img标签

  1. <img src="plmm.jpg" width="100px" height="200px" alt="图片信息丢失!"/>
  2. // alt属性的值表示当图片找不到时显示的文字信息

1.3 列表标签

  1. <ol type="I" start="1">
  2. <li>我是天才1</li>
  3. <li>我是天才2</li>
  4. <li>我是天才3</li>
  5. <li>我是天才4</li>
  6. </ol>
  7. <ul type="circle">
  8. <li>我是逗逼1</li>
  9. <li>我是逗逼1</li>
  10. <li>我是逗逼1</li>
  11. <li>我是逗逼1</li>
  12. </ul>
  13. <dl>
  14. <dt>日记第一天</dt>
  15. <dd>好兴奋啊要上课了</dd>
  16. <dt>日记第二天</dt>
  17. <dd>晚上要早点睡觉</dd>
  18. <dt>日记第三天</dt>
  19. <dd>真的心累啊热啊</dd>
  20. </dl>
  21. /* ol(ordered list):有序
  22. li(list item):列表项
  23. ul(unordered list):无序
  24. dl(defined list):自定义
  25. dt(defined title):自定义标题
  26. dd(defined document):自定义内容
  27. */

1.4 表格标签

  1. <table align="center" border="1" cellspacing="0" width="80%">
  2. <h3 align="center">考试信息登记表</h3>
  3. <tr>
  4. <th>姓名</th>
  5. <th>年龄</th>
  6. <th>性别</th>
  7. <th>成绩</th>
  8. </tr>
  9. <tr align="center">
  10. <td>小二</td>
  11. <td>17</td>
  12. <td></td>
  13. <td>99</td>
  14. </tr>
  15. <tr align="center">
  16. <td>小三</td>
  17. <td>19</td>
  18. <td></td>
  19. <td>86</td>
  20. </tr><tr align="center">
  21. <td>小四</td>
  22. <td>17</td>
  23. <td></td>
  24. <td>100</td>
  25. </tr><tr align="center">
  26. <td>小五</td>
  27. <td>20</td>
  28. <td></td>
  29. <td>59</td>
  30. </tr>
  31. </table>
  32. /*
  33. table属性:border表示边框,cellpadding表示表格内边距,spacepadding表示表格外边距
  34. td属性:rowspan表示合并的行数,colspan表示合并的列数
  35. */

1.5 表单标签

  1. <form action="#" method="get">
  2. 用户名:<input type="text" name="username"/><br/>
  3. 密码:<input type="password" name="password" /><br>
  4. <input type="submit" value="登录" />
  5. <br/>
  6. <input type="radio" name="gender" value="nan" />
  7. <input type="radio" name="gender" value="nv" />
  8. <br>
  9. <input type="checkbox" name="play" value="lanqiu" />篮球
  10. <input type="checkbox" name="play" value="zuqiu" />足球
  11. <input type="checkbox" name="play" value="paiqiu" />排球
  12. <input type="checkbox" name="play" value="qiu" />乒乓球
  13. <br>
  14. <select name="city">
  15. <option>深圳</option>
  16. <option>北京</option>
  17. <option>上海</option>
  18. </select>
  19. </form>

实战1:1024网站入口

  • 先来看一下效果图


* 用到的图片如下


  • 代码如下

    1. <p align="center">
    2. <img src="img/logo6.png" />
    3. </p>
    4. <p align="center"><font color="red" size="5"><b>警告 / WRANNING</b></font></p>
    5. <p align="center">
    6. 本物品內容可能看不明白;不可將本物品內容派發,傳閱,出售,出租,交給 或出借予年齡非程序猿的人士出示,播放或播映。
    7. </p>
    8. <p align="center">
    9. This article contains material which may offernd and may not be distributed, circulated, sold, hired, given, lent, shown, played or projected to a person under the age of 18 years. All models are 18 or older.
    10. <p align="center">
    11. <a href="http://www.baidu.com" target="_blank"><img src="img/click.png" alt="图片已经丢失!" /></a>
    12. </p>

    实战2:世纪佳缘注册页面

  • 先来看一下效果图


* 用到的图片如下


* 代码如下

  1. <form action="http://www.itheima.com/register" method="GET">
  2. <h4 align="center">世纪佳缘征婚注册表</h4>
  3. <table align="center" background="img/plmm.jpg">
  4. <tr>
  5. <td>用户名:</td>
  6. <td>
  7. <input type="text" name="username" />
  8. </td>
  9. </tr>
  10. <tr>
  11. <td>密码:</td>
  12. <td>
  13. <input type="password" name="password" />
  14. </td>
  15. </tr>
  16. <tr>
  17. <td>性别:</td>
  18. <td>
  19. <input type="radio" name="gender" value="man" />
  20. <input type="radio" name="gender" value="wuman" /></td>
  21. </tr>
  22. <tr>
  23. <td>爱好:</td>
  24. <td>
  25. <input type="checkbox" name="happy" value="lanqiu" />篮球
  26. <input type="checkbox" name="happy" value="zuqiu" />足球
  27. <input type="checkbox" name="happy" value="paiqiu" />排球
  28. <input type="checkbox" name="happy" value="wmx" />玩毛线</td>
  29. </tr>
  30. <tr>
  31. <td>城市:</td>
  32. <td>
  33. <select name="city">
  34. <option>深圳</option>
  35. <option>江西</option>
  36. <option>贵州</option>
  37. <option>湖南</option>
  38. <option>吉林</option>
  39. <option>湖北</option>
  40. </select>
  41. </td>
  42. </tr>
  43. <tr>
  44. <td>个人宣言:</td>
  45. <td>
  46. <textarea>
  47. </textarea>
  48. </td>
  49. </tr>
  50. <th></th>
  51. <tr>
  52. <th colspan="2">
  53. <input type="submit" value="注册" />
  54. </th>
  55. </tr>
  56. </table>
  57. </form>

2.css的使用

2.1 盒子模型

  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <title></title>
  5. <style>
  6. .div1{
  7. width:200px;
  8. height:200px;
  9. background-color: red;
  10. padding: 50px;
  11. border: 5px;
  12. }
  13. .div2{
  14. background-color: blue;
  15. width:100px;
  16. height:100px;
  17. padding: 20px;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="div1">
  23. 我是个天才
  24. <div class="div2">
  25. 我是个小天才
  26. </div>
  27. </div>
  28. </body>
  29. </html>

2.2 css的三种选择器

  • css获取html中的div有三种方式:类选择器,元素选择器,名称选择器。第一种是在div属性中定义一个class属性,然后在css中通过#来引用定义的值,同理第二种是通过.来引用,第三种是通过div名称来引用。
  • 导入css样式到html中也有三种方式,如@import url(“css/style.css”);获取@import url(css/style.css);都可以
  • 代码如下

    1. <head>
    2. <meta charset="utf-8" />
    3. <title></title>
    4. <style>
    5. @import url("css/style.css");
    6. div{
    7. background-color: red;
    8. }
    9. </style>
    10. </head>
    11. <body>
    12. <div class="div1">这是第一块DIV区域</div>
    13. <div class="div2">这是第二块DIV区域</div>
    14. <span id="span1">这是第一块span区域</span>
    15. <span id="span2">这是第二块span区域</span>
    16. <div>我是个天才</div>
    17. </body>

2.3 流式布局

  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <title></title>
  5. <style>
  6. #div1{
  7. width: 200px;
  8. height: 200px;
  9. background-color:aliceblue;
  10. margin-top: 30px; /* 外边距 */
  11. margin-left: 50px;
  12. padding: 30px; /* 内边距 */
  13. border-style: ridge;
  14. border-color: coral;
  15. border-width: 2px;
  16. position: relative;
  17. float: left;
  18. }
  19. #div2{
  20. width: 200px;
  21. height: 200px;
  22. background-color:aliceblue;
  23. margin-top: 30px; /* 外边距 */
  24. margin-left:10px;
  25. padding: 30px; /* 内边距 */
  26. border-style: ridge;
  27. border-color: coral;
  28. border-width: 2px;
  29. position: relative;
  30. float: left;
  31. }
  32. #div3{
  33. width: 200px;
  34. height: 200px;
  35. background-color:aliceblue;
  36. margin-top: 30px; /* 外边距 */
  37. margin-left:10px;
  38. padding: 30px; /* 内边距 */
  39. border-style: ridge;
  40. border-color: coral;
  41. border-width: 2px;
  42. position: relative;
  43. float: left;
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <div id="div1">div1中的内容</div>
  49. <div id="div2">div2中的内容</div>
  50. <div id="div3">div3中的内容</div>
  51. </body>
  52. </html>
0
0
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/559440
推荐阅读
相关标签
  

闽ICP备14008679号