-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (23 loc) · 899 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="George W. Park">
<meta name="description" content="This project demonstrates how CSS radial gradients can be used to create a focusable spotlight effect.">
<!-- Title -->
<title>Radial Gradient Spotlight Effect</title>
<!-- External CSS Files -->
<link rel="stylesheet" href="/css/reset.css">
<link rel="stylesheet" href="/css/styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:700">
<!-- External JavaScript File -->
<script src="/js/main.js" defer></script>
</head>
<body>
<h1>Hold left click to focus</h1>
<div class="spotlight"></div>
</body>
</html>