先上链接:http://www.codecademy.com/zh/courses/web-beginner-en-3pc6w/3/1
<!DOCTYPE html>
<head>
<style>
body {
background-size: cover;
background-position: center;
text-align: center;
background: url("https://codecademy-content.s3.amazonaws.com/courses/web-beginner-en-3pc6w/images/splash.jpg");
color: orangered;
font-family: Helvetica;
}
p {
font-size: 24px;
}
input {
border: 0;
padding: 12px;
font-size: 18px;
}
input[type="submit"] {
background: limegreen;
color: black;
}
</style>
</head>
<body>
<img src="https://codecademy-content.s3.amazonaws.com/courses/web-beginner-en-3pc6w/images/avatar.jpg" height="250" width="250">Jay Chan</h1>
<p>Hi! I am Jay Chan,I am learning how to make my very own web page!I really like watermellon muffins and long walks on the the beach.</p>
<input type="email" placeholder="Email">
<input type="submit">
</body>
|