-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (102 loc) · 3.35 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!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="description"
content="An app that can help you in conquering your fear of Triangles while having some fun."
/>
<meta
name="keywords"
content="triangle, angle, acute, obtuse, right, equilateral, isosceles, scalene, base, height"
/>
<meta name="author" content="Shivam Tewari" />
<!-- Font Awesome CDNs -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/solid.css"
integrity="sha384-Tv5i09RULyHKMwX0E8wJUqSOaXlyu3SQxORObAI08iUwIalMmN5L6AvlPX2LMoSE"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/brands.css"
integrity="sha384-S5yUroXKhsCryF2hYGm7i8RQ/ThL96qmmWD+lF5AZTdOdsxChQktVW+cKP/s4eav"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/fontawesome.css"
integrity="sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7"
crossorigin="anonymous"
/>
<!-- User-defined Stylesheet -->
<link rel="stylesheet" href="./assets/stylesheets/index.css" />
<title>Triangles Simplified</title>
</head>
<body>
<h1 class="brand-name">Triangles Simplified</h1>
<hr class="section-divider brand-hr" />
<div class="content" id="content">
<h3 class="hero-txt-1">We can help you conquer your fear of Triangles</h3>
<p class="hero-txt-2">
Go ahead, & select any activity below to get started -
</p>
<div class="choices">
<div class="choice-1 sub-section" data-id="angles">
<p class="choice-text" data-id="angles">Angles of Triangle ?</p>
</div>
<div class="choice-2 sub-section" data-id="hypoCheck">
<p class="choice-text" data-id="hypoCheck">Check Hypotenuse</p>
</div>
<div class="choice-3 sub-section" data-id="area">
<p class="choice-text" data-id="area">Calculate Area</p>
</div>
<div class="choice-4 sub-section" data-id="quiz">
<p class="choice-text" data-id="quiz">Take a Quiz</p>
</div>
</div>
</div>
<script src="./assets/scripts/index.js"></script>
</body>
<hr class="section-divider footer-hr" />
<footer class="footer">
<a class="footer__links" href="mailto:[email protected]">
<i class="fas fa-envelope"></i>
</a>
<a
class="footer__links"
href="https://twitter.com/ShiviPro"
target="_blank"
rel="noopener noreferrer"
>
<i class="fab fa-twitter"></i>
</a>
<a
class="footer__links"
href="https://github.com/ShiviPro"
target="_blank"
rel="noopener noreferrer"
>
<i class="fab fa-github"></i>
</a>
<a
class="footer__links"
href="https://www.linkedin.com/in/shivam-tewari-9286b1171/"
target="_blank"
rel="noopener noreferrer"
>
<i class="fab fa-linkedin"></i>
</a>
<a
class="footer__links"
href="https://shivamtewari.netlify.app/"
target="_blank"
rel="noopener noreferrer"
>
<i class="fas fa-briefcase"></i>
</a>
</footer>
</html>