-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfcc_calculator.html
26 lines (26 loc) · 1.31 KB
/
fcc_calculator.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Camden Shaw's FCC Calculator</title>
<meta name="description" content="Camden Shaw Developer Portfolio">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://kit.fontawesome.com/9f94175682.js" crossorigin="anonymous"></script>
<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=Changa:wght@200&family=Orbitron:wght@900&display=swap" rel="stylesheet">
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="https://unpkg.com/react@17/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js" crossorigin></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
</head>
<body class="main-site">
<main id="calculator"></main>
<footer>
<p>© copyright 2022. All rights reserved</p>
</footer>
<script src="./fcc/calculator/Calculator.js"></script>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</html>