Files
loi-phan-internship/Sample/training-10-sample/index.html
T

28 lines
686 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/style.css" type="text/css" rel="stylesheet" />
<title>Introducing CSS</title>
<style type="text/css">
h1+p {
background-color: #ee3e80;
}
</style>
</head>
<body>
<h1>Potatoes</h1>
<p id="intro">There are <i>dozens</i> of different
<b>potato</b> varieties.
</p>
<p>They are usually described as early, second early
and maincrop potatoes.</p>
<p>They are usually described as early, second early
and maincrop potatoes.</p>
</body>
</html>