-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (60 loc) · 1.87 KB
/
Copy pathindex.html
File metadata and controls
63 lines (60 loc) · 1.87 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Triangle Trivia</title>
</head>
<body>
<h1 class="heading">Welcome To Triangle Trivia</h1>
<section class="section">
<div class="card">
<a href="./pages/angles.html" class="link display-flex-row">
<div class="container-center">
<h3>
Angles Of Triangle
</h3>
<span class="fa fa-chevron-right icon-next"></span>
</div>
</a>
</div>
<div class="card">
<a href="./pages/hypotenuse.html" class="link display-flex-row">
<div class="container-center">
<h3>
Check Hypotenuse
</h3>
<span class="fa fa-chevron-right icon-next"></span>
</div>
</a>
</div>
<div class="card">
<a href="./pages/area.html" class="link display-flex-row">
<div class="container-center">
<h3>
Calculate Area
</h3>
<span class="fa fa-chevron-right icon-next"></span>
</div>
</a>
</div>
<div class="card">
<a href="./pages/quiz.html" class="link display-flex-row">
<div class="container-center">
<h3>
Take a quiz
</h3>
<span class="fa fa-chevron-right icon-next"></span>
</div>
</a>
</div>
</section>
<footer>
<a href="https://github.com/shraddha-1402" class="icon-sm link fa fa-github"></a>
<a href="https://twitter.com/ShraddhaGupta08" class="icon-sm link fa fa-twitter"></a>
<a href="https://www.linkedin.com/in/shraddha-gupta-6b24a6217/" class="icon-sm link fa fa-linkedin"></a>
</footer>
</body>
</html>