mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-05-09 20:05:20 -04:00
feat: add favicon and footer
This commit is contained in:
parent
c95b6039ba
commit
42e9f92143
4 changed files with 23 additions and 5 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue