Skip to content

Commit

Permalink
Add a basic index page
Browse files Browse the repository at this point in the history
  • Loading branch information
wbamberg committed Jan 24, 2023
1 parent 8f81a56 commit 9dd178b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions css-painting/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width" />

<title>CSS Painting API examples</title>

<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>

<body>
<ul>
<li>
<a href="half-highlight-fixed-size">Half highlight, fixed size</a>
</li>
<li>
<a href="half-highlight-paintsize">Half highlight, variable size</a>
</li>
<li><a href="fancy-header-highlight">Fancy highlight</a></li>
<li><a href="custom-properties">Using custom properties</a></li>
<li><a href="hollow-highlight">Hollow highlight</a></li>
</ul>
</body>
</html>

0 comments on commit 9dd178b

Please sign in to comment.