zoukankan      html  css  js  c++  java
  • Head First Html与CSS 前两章

    2019-11-29

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8" />
            <title>Starbuzz Coffee</title>
        </head>
        <body>
            <h1>Starbuzz Coffee Beverages</h1>
            <h2>House Blend, $1.49</h2>
            <p>A smooth,mild blend of coffees from Mexico,
            Bolivia and Guatemala.</p>
            <h2>Mocha Cafe Latte, $2.35</h2>
            <p>Espresso,steamed milk and chocolate</p>
        </body>
    </html>

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8" />
            <title>Starbuzz Coffee</title>
            <style type = "text/css">
                body{
                    background-color:#d2b48c;
                    margin-left:20%;
                    margin-right:20%;
                    border:2px dotted black;
                    padding: 10px 10px 10px 10px;
                    font-family: sans-serif;
                }
            </style>
        </head>
        <body>
            <h1>Starbuzz Coffee Beverages</h1>
            <h2>House Blend, $1.49</h2>
            <p id="houseblend">A smooth,mild blend of coffees from Mexico,Bolivia</p>
            <p>A smooth,mild blend of coffees from Mexico,
            Bolivia and Guatemala.</p>
            <h2>Mocha Cafe Latte, $2.35</h2>
            <p>Espresso,steamed milk and chocolate</p>
        </body>
    </html>

     

     

    <!DOCTYPE html>
    <html>
      <head>
        <title>Head First Lounge</title>
      </head>
      <body>
        <h1>Welcome to the New and Improved Head First Lounge</h1>
        <img src="drinks.gif">
        <p>
           Join us any evening for refreshing<a href="elixir.html">elixirs</a>,
           conversation and maybe a game or two of 
           <em>Dance Dance Revolution</em>.
           Wireless access is always provided;  
           BYOWS (Bring your own web server).
        </p>
        <h2>Directions</h2>
        <p>
          You'll find us right in the center of downtown Webville.   
          If you need help finding us, check out our <a href="directions.html">detailed directions</a>.
          Come join us!
        </p>
      </body>
    </html>

     

     <a></a>内部的元素是可以单机的

     

     

     

     

     

     

     

  • 相关阅读:
    hibernate01
    利用Struts2拦截器完成文件上传功能
    layui的CRUD案例
    最大流dinic模板 poj1273
    CodeForces
    POJ 2139 Six Degrees of Cowvin Bacon (floyd)
    POJ 3259 Wormholes (floyd或者spfa)
    POJ 3615 Cow Hurdles (flyod)
    Codeforces Round #446 (Div. 1) A. Pride
    Educational Codeforces Round 34 A. Hungry Student Problem
  • 原文地址:https://www.cnblogs.com/JasonPeng1/p/11960952.html
Copyright © 2011-2022 走看看