-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1.02 KB
/
index.html
File metadata and controls
34 lines (32 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>CSS progress() function demo</title>
<link href="index.css" rel="stylesheet" />
<script defer src="index.js"></script>
</head>
<body>
<article>
<section class="background"></section>
<section class="content">
<div class="progress"></div>
<h1>CSS <code>progress()</code> function demo</h1>
<p>
Increase your viewport width to see the visual change (works best on
desktop; the <code>progress()</code> function is supported in Chrome
138+).
</p>
<p class="credit">
Background image:
<a
href="https://unsplash.com/photos/city-buildings-near-body-of-water-under-cloudy-sky-o6k0ZH1eOwg"
>Hong Kong Island from aerial view in sunrise</a
>
from unsplash.com, taken by
<a href="https://unsplash.com/@yiucheung">Lok Yiu Cheung</a>.
</p>
</section>
</article>
</body>
</html>