Skip to content
Permalink
e4321b034e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
35 lines (34 sloc) 850 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<title>Selecting elements</title>
<meta charset="utf-8">
<link href="css/targetstyles.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>Element selection demo</h1>
<p>The sources of energy are:</p>
<ol>
<li>protein</li>
<li>carbohydrates</li>
<li>fat</li>
</ol>
<p>Sources of carbohydrates:</p>
<ul>
<li>Fruits and berries</li>
<li>Wheat and pasta</li>
<li>Sweet products
<ul>
<li>Candies
<ul>
<li>Jelly beans</li>
<li>Irish toffee</li>
<li>Fruit drops</li>
</ul>
</li>
<li>Pastries</li>
</ul>
</li>
</ul>
</body>
</html>