feat: add favicon and footer

This commit is contained in:
Smigz 2023-10-12 21:41:17 -04:00
parent c95b6039ba
commit 42e9f92143
4 changed files with 23 additions and 5 deletions

View file

@ -1,16 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap"
rel="stylesheet">
<link rel="shortcut icon" type="image/svg" href="faviocon.svg">
<link rel="stylesheet" href="css/style.css">
<title>Calculator</title>
</head>
<body>
<div class="container">
<div class="container">
<div class="display">
0
</div>
@ -35,7 +39,11 @@
<button id="decimal" class="btn" value="." data-num="">.</button>
<button id="action" class="btn" value="=" data-ops="">=</button>
</div>
</div>
<script src="js/script.js"></script>
</div>
<div class="footer">
<p>Created by <a href="http://smig.tech">Smig.Tech</a> | Calculator project from The Odin Project</p>
</div>
<script src="js/script.js"></script>
</body>
</html>
</html>