-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 1.48 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
<!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">
<link rel="stylesheet" href="style.css" />
<title>Fun With Triangles</title>
</head>
<body>
<div id="istri-bg">
<div id="index-centre">
<h1 id="index-heading">Do You Know Your Triangles?</h1>
<button onclick="document.location='istriangle.html'" class="index-btn">
<a href="istriangle.html">Is Triangle?</a>
</button>
<button onclick="document.location='quiz.html'" class="index-btn">
<a href="quiz.html">Triangle Quiz</a>
</button>
<button onclick="document.location='hypotenuse.html'" class="index-btn">
<a href="hypotenuse.html">Hypotenuse</a>
</button>
<button onclick="document.location='area.html'" class="index-btn">
<a href="area.html">Area of Triangle</a>
</button>
</div>
</div>
<div class="social">
<ul>
<li><a target="_blank" class="link" href="https://www.linkedin.com/in/bhavya-joshi-438178184">LinkedIn</a></li>
<li><a target="_blank" class="link" href="https://github.com/bhavyaj12">Github</a></li>
<li><a target="_blank" class="link" href="https://bhavyaj-portfolio.netlify.app/">Portfolio</a></li>
</ul>
</div>
</body>
</html>