乱打的html

0x01 home.html


<!DOCTYPE html>
<html>
    <head>
        <title>TLA lalala</title>
        <link href="style.css" type="text/css" rel="stylesheet">
    </head>
    <body>
        <!--page header-->
        <header>
            <img src="logo.gif" alt="TLA logo" height="70" width="70" />
            <h1>TLA Comsulting</h1>
        </header>
        
        <!--menu-->
        <nav>
            <div class="menuitem">
                <a href="home.html">
                    <img src="s-logo.gif" alt="" height="20" width="20"/>
                    <span class="menutext">Home</span>
                </a>
            </div>
            
            <div class="menuitem">
                <a href="contact.html">
                    <img src="s-logo.gif" alt="" height="20" width="20" />
                    <span class="menutext">Contact</span>
                </a>
            </div>
            
            <div class="menuitem">
                <a href="services.html">
                    <img src="s-logo.gif" alt="" height="20" width="20" />
                    <span class="menutext">Services</span>
                </a>
            </div>
            
            <div class="menuitem">
                <a href="about.html">
                    <img src="s-logo.gif" alt="" height="20" width="20" />
                    <span class="menutext">Contact</span>
                </a>
            </div>
        </nav>
        
        <!--page content-->
        <section>
            <h2>Welcome to the home of TLA Consulting</h2>
            <p>Please take some time to get to know us</p>
            <p>We specialize in serving your business needs and hope to hear from you soon</p>
        </section>
        
        <footer>
            <p>&copy;TLA Consulting Pty Ltd.<br />
                Please see our
                <a href="legal.php">legal information page</a>.</p>
        </footer>
        
    </body>
</html>

演示图如下,缺少超链接和logo

0x02 Untitled.html

<html>
    <head>
        <title>Bob's Auto paarts</title>
    </head>
    <body>
        <table style="border: 0px; padding:3px">
            <tr>
                <td style="background: #cccccc; text-align:center;">Distance</td>
                <td style="background: #cccccc; text-align:center;">Cost</td>
            </tr>
            <tr>
                <td style="text-align: right;">50</td>
                <td style="text-align: right;">5</td>
            </tr>
           <tr>
                <td style="text-align: right;">100</td>
                <td style="text-align: right;">10</td>
            </tr>
             <tr>
                <td style="text-align: right;">150</td>
                <td style="text-align: right;">15</td>
            </tr>
        </table>
    </body>

猜你喜欢

转载自www.cnblogs.com/waterxx/p/13171876.html