SOURCE

console 命令行工具 X clear

                    
>
console
<h1>Jane Doe</h1>
<div class="job-title">Web Developer</div>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>

<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. </p>

<h2>Contact information</h2>
<ul>
    <li>Email: <a href="mailto:jane@example.com">jane@example.com</a></li>
    <li>Web: <a href="http://example.com">http://example.com</a></li>
    <li>Tel: 123 45678</li>
</ul>
h1{
    color: hotpink;
    border-bottom:10px  dotted purple;
}

div.job-title{
    font-weight: bold;
    color: darkgray;
    font-size: large;
}

p{
    font-family:"Gill Sans", sans-serif;
    font-size: large;
}

h2{
    font-style: oblique;
}

ul{
    border: 5px solid purple;
    background: gainsboro;
}

ul li a{
    color: #fb6542;
}

li:first-child a{
    text-decoration: none;
    color: green
}

a:visited, a:hover{
    text-decoration: none;
    color: paleturquoise;
}