-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (47 loc) · 2.15 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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="Growth rate, compound growth rate, ">
<meta name="description" content="This is a basic macro economic calculator ">
<title>Macro-Economic Calculator | Lee & Elyes </title>
<!-- Materialize -->
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- Custom css -->
<link rel="stylesheet" href="style.css">
<!-- Custom js -->
<script defer src="main.js"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<section class="landing-page">
<nav>
<div class="nav-wrapper">
<a href="index.html" class="brand-logo center">Macro Calculator</a>
</div>
</nav>
<div class="hamburger click">
<div class="line ln-1"></div>
<div class="line ln-2"></div>
</div>
<div class="hero">
<div class="slider-controls">
</div>
<div class="welcome">
<div class="image">
<img src="images/calculator.jpg" alt="Calculator">
</div>
<h1 class="intro">Macro Economic Calculator</h1>
<p class="message">Computes some of the basic macro economics calculation with ease!!!</p>
<button class="go-to-calc">Go to calculator <i class="fa-solid fa-arrow-down"></i></button>
</div>
</div>
</section>
</body>
</html>