-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (65 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Setoka</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
a:link {
color:rgb(255, 140, 25);
background-color: transparent;
text-decoration: none;
}
a:visited {
color:rgb(255, 140, 25);
background-color: transparent;
text-decoration: none;
}
a:hover {
color:rgb(255, 180, 40);
background-color: transparent;
text-decoration: underline;
}
a:active {
color:rgb(255, 140, 25);
background-color: transparent;
text-decoration: underline;
}
</style>
</head>
<body>
<!-- Setoka color; RGB 255 140 25 -->
<div class="container text-center">
<img src="setoka.png" alt="setoka.co" style="width:250px;height:250px; margin: 25px 25px 0px 25px" />
<h1 style="color:rgb(255, 140, 25);" >Setoka</h1>
<h4 style="color:rgb(255, 140, 25);" >Projects by David Wilson</h4>
</div>
<div class="container">
<div class="border row">
<div class="border col-sm-4 text-center">
<h3>Japanese Number Converter</h3>
<a href="http://japanesenumberconverter.com/">japanesenumberconverter.com</a>
<p>Does what it says on the tin. </p>
</div>
<div class="border col-sm-4 text-center">
<h3>Kansai Walks</h3>
<a href="https://main-kansaiw-cssaqti8jjh28p9r-gtw.qovery.io/">kansaiwalks.com</a>
<p>Explore walking and hiking trails around Kansai, Japan. </p>
</div>
<div class="border col-sm-4 text-center">
<h3>Elons Tweets</h3>
<a href="https://elonstweets.info/">elonstweets.info</a>
<p>Tweets by Elon Musk, organised.</p>
</div>
</div>
<div class="col-xs-12" style="height:150px;"></div>
</body>
<footer class="page-footer">
<div class="footer-copyright text-center">
<a href='https://ko-fi.com/J3J827IJS' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://cdn.ko-fi.com/cdn/kofi5.png?v=2' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a> ·
</div>
</footer>
</html>