-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (49 loc) · 2.07 KB
/
index.html
File metadata and controls
53 lines (49 loc) · 2.07 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>ReSech.github.io</title>
<meta name="description" content="Landing Page for ReSech projects"/>
<!--Google font-->
<link href="https://fonts.googleapis.com/css?family=K2D:300,400,500,700,800" rel="stylesheet">
<!-- Bootstrap CSS / Color Scheme -->
<link rel="stylesheet" href="css/bootstrap.css">
</head>
<body>
<!--Header Section-->
<section>
<div class="container">
<div class="row mt-6">
<div class="col-md-8 mx-auto text-center">
<h1>Tools and Projects</h1>
<p class="lead mb-5">A few projects I've updated or written.</p>
<a href="https://resech.github.io/dicecalc/" class="btn btn-success svg-icon">
<em class="mr-2" data-feather="percent"></em>
Dice Probability Calculator
</a>
<br>
<br>
<a href="https://resech.github.io/pvpcalc/" class="btn btn-success svg-icon">
<em class="mr-2" data-feather="crosshair"></em>
PVP Series Calculator
</a>
<br>
<br>
<a href="https://resech.github.io/xmage/formatter.html" class="btn btn-success svg-icon">
<em class="mr-2" data-feather="edit"></em>
Mox to XMage Formatter
</a>
</div>
</div>
</div>
</section>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.7.1.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/feather-icons/4.29.2/feather.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/plugins/line-numbers/prism-line-numbers.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>