SOURCE

console 命令行工具 X clear

                    
>
console
<head>
  <meta charset="utf-8">
  <title>It's a personal page</title>
</head>

<body>
  <h1>Jane Doe</h1>
  <h2 class="small-title">Web Developer</h2>
  <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 class="Contact-information">Contact information</h2>
  <ul>
    <li >Email:<span class="e-mail"> jane@example.com</span></li>
    <li>Web: <a href="http://example.com">http://example.com</a></li>
    <li>Tel: 123 45678</li>
  </ul>
</body>
h1{ 
color:pink;
border-bottom:10px dotted purple;
}
.small-title{
  color:silver;
  font-size:16px;}
.Contact-information{
  font-style:italic;
}
ul{
  border:5px solid purple ;
  background-color:silver;
  padding :10px 10px 10px 20px;
}
.e-mail{
  color:green;
}

a:hover{
  color:red;
}
a:link, a:visited {
  color: #fb6542;
}