-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (97 loc) · 4.86 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link href="./style.css" rel="stylesheet">
<title>T-hypester</title>
<link rel="icon" type="image/jpeg" href="/images/logo.jpeg" />
</head>
<body class="grad">
<nav class="navbar navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand gradient-text">
<img src="./images/logo.jpeg" alt="" width="30" height="24" class="d-inline-block align-text-top ">
T-hypester
</a>
<a href="https://github.com/T-hypester" class="btn">View on GitHub</a>
</div>
</nav>
<div class="parallax-header">
<div class="container mb-5">
<div class="header-content">
<h1 width="200" class="d-block mx-auto text-center text-light">T-hypester</h1>
<h3 class="text-center text-light lead">Typescript games for life! Not for fun.</h3>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm">
<div class="card mb-5 text-light" style="width: 18rem; background-color: black;">
<img src="./images/pixels.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Pixels</h5>
<p class="card-text">A simple and funny Tron like game made with TypeScript.</p>
<a href="https://t-hypester.github.io/pixels/" class="btn btn-primary">Test it</a>
<a href="https://github.com/T-hypester/pixels" class="btn btn-primary">github repo</a>
</div>
</div>
</div>
<div class="col-sm">
<div class="card mb-5 text-light" style="width: 18rem; background-color: black;">
<img src="./images/iso.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">IsoMap</h5>
<p class="card-text">Funny 3D CSS Game developed with typescript including random block generation.</p>
<a href="https://t-hypester.github.io/isomap/" class="btn btn-primary">Test it</a>
<a href="https://github.com/T-hypester/isomap" class="btn btn-primary">github repo</a>
</div>
</div>
</div>
<div class="col-sm">
<div class="card mb-5 text-light" style="width: 18rem; background-color: black;">
<img src="./images/iso.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<div class="col-sm">
<div class="card mb-5 text-light" style="width: 18rem; background-color: black;">
<img src="./images/1.JPG" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<div class="col-sm">
<div class="card mb-5 text-light" style="width: 18rem; background-color: black;">
<img src="./images/2.JPG" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<div class="col-sm">
<div class="card mb-5 text-light" style="width: 18rem; background-color: black;">
<img src="./images/iso.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous"></script>
</body>
</html>