mirror of
https://github.com/Nezumi-2711/loi-phan-internship.git
synced 2026-09-22 20:01:33 +00:00
28 lines
686 B
HTML
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> |