-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
58 lines (55 loc) · 1.87 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="img/bgeninja.ico">
<title>BGENinja - About</title>
</head>
<body>
<div class="dawg-serious">
<h1>About</h1>
<p>
Hi I'm Chris the developer of this website,
I created this site just to be an alternative to <u>tutorialsforblender3d.com</u> which was dead for long time and was a pretty good site for game engine tutorials.
I use <a href='https://kitsuystudio.itch.io/upbge-026' target="_blank" title="You gotta check this one out if u still wanted to experiment with UPBGE 2.5+, there were lots of fixes. I mean, A LOT.">UPBGE 2.6</a> series and <a href="https://rangeengine.tech/" title="This is some real work on the graphics, bugs, new feature implementations, etc." target="_blank">RanGE</a>.
</p>
<div class="divide"></div>
<h3>Contact</h3>
<p>
If you would like to contribute you can do it, but please read <a href="contribute.html" target="_blank">this</a>.
Here is where you can contact me.
</p>
<ul>
<li><a href="mailto:chrisbradleyjones@proton.me" target="_blank">Mail</a></li>
<li><a href="https://discord.com/users/800750244831952936" target="_blank">Discord</a> (More active)</li>
</ul>
</div>
<style>
/* ============ ABOUT.HTML ============ */
body{
margin: 0px 2rem 0px;
}
h3{
margin: 20px auto 0px;
}
.dawg-serious a{
text-decoration-color: navajowhite;
color: navajowhite;
}
.divide{
margin-top: 30px;
border: 1px solid darkgray;
width: 50vw;
margin-left: auto;
margin-right: auto;
}
@media screen and (orientation: portrait) and (max-width: 1080px){
.divide{
width: 75vw;
}
}
</style>
</body>
</html>