-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (59 loc) · 3.05 KB
/
Copy pathindex.html
File metadata and controls
89 lines (59 loc) · 3.05 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Start cookieyes banner -->
<script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/9a0b31a5d5f7a4068ec5d7fe/script.js"></script>
<!-- End cookieyes banner -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-06L56VXPC1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-06L56VXPC1');
</script>
<!-- end Google tag (gtag.js) -->
<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 type="text/css" rel="stylesheet" href="css/style.css" media="all">
<title>Terra Prima - Homepage</title>
</head>
<body>
<div class=" subPage clearfix">
<div align="center">
<div class="writeHeader"></div>
<div class="box">
<h1>Terra Prima - a science-fiction comic</h1>
<img src="img/banner.png" alt="Banner main 3 characters" class="responsiveImage">
<p>Terra Prima is a science fiction comic that follows the journey of an idealistic scientist, a self-absorbed collector of emotions, a mysterious madman, and the people they meet along the way, as they deal with their personal challenges amidst a multiverse-wide conflict.</p>
<p><strong>NOTE: since the page is still in test mode, I have only uploaded chapter 1 so far. You can read the rest of the comic on <a href="https://tapas.io/series/Terra-Prima/info" title="a link to my webcomic Terra Prima" target="_blank">Tapas</a>.</strong></p>
</div>
<div class="archivePage archiveBox" align="left">
<h1>Chapters</h1>
<script>
indexPage = "comic.html" //set which html page the comic pages are on, supremely important. archive system will break otherwise
</script>
<div class="chapter1">
<h3>Book One</h3>
</div>
<div class="chapter2">
<h3>Book Two</h3>
</div>
<div class="chapter3">
<h3>Book Three</h3>
</div>
</div>
<div class="box">
<p><em>This site is also my personal website development learning project and is still under construction as I learn new things along the way. Need to contact me? You can <a href="mailto:gatablanca@gmail.com">send me an email</a>.</em></p>
</div>
</div>
<div id="footer" class="writeFooter"></div>
</div>
<!-- every js script is called here, in this specific order.-->
<script src="js/comic_header.js" defer></script>
<script src="js/comic_settings.js" defer></script>
<script src="js/comic_archive.js" defer></script>
<script src="js/comic_footer.js" defer></script>
</body>
</html>