-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 1.2 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css"
integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
<link rel="shortcut icon" href="fire.png" type="image/x-icon">
<title>DOOM Fire</title>
</head>
<body>
<div class="header">
<h1>Come, sit down</h1>
<p>have a story to tell?</p>
</div>
<div id="fireCanvas"></div>
<div class="container">
<div class="slider-container">
<input type="range" id="range" min="2" step="0.1" max="6" value="3.9">
</div>
</div>
<div class="footer">
<div class="description">
<div>
Made with pure <i class="fab fa-js"> </i> by <a href="https://github.com/HigorTuretta/FogoDoDoom">Higor
Turetta</a>
</div>
</div>
</div>
<audio src="Fire-sound-effect.mp3" id="som" autoplay loop></audio>
<script src="fire.js"></script>
</body>
</html>