-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
58 lines (49 loc) · 1.86 KB
/
index.php
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
<?php ?>
<!DOCTYPE html>
<meta charset="utf-8"/>
<meta name="description" content="Gameplay Page for generic Comparitor Games">
<meta name="author" content="Gregory Ewing">
<meta name="keywords" content="PHP, HTML, CSS, javascript">
<html>
<head>
<title>Water Ethics Web Engine</title>
<!-- Include CSS styling from external files -->
<link href="https://fonts.googleapis.com/css?family=Anton&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="app/style-litev2.css">
</head>
<body>
<div id="page-container">
<div id="content-wrap">
<div class="topnav" style="background-color:#6d7c91ff;">
<div class="topnav-inner" id="nav-right" style="float:right; text-align:right;">
Investigating Ethics in Engineering
</div>
<div class="topnav-inner" id="navleft" style="float:left; text-align:left; font-family:'Anton',sans-serif;">
Ethics Engine
</div>
</div>
</div>
<section>
<p>
Welcome to the Water Ethics Web Engine.
This is the landing page, and there's more to come.
If you're looking to play a certain scenario game make sure you have the correct url.
Maybe you're missing something to the end of your url?
</p>
</section>
<div id="footer">
<!-- Affiliated Institution Logos -->
<div style="float:right; width:47.5%; padding-right:2.5%; text-align:right;" id="footer-images">
<a href="https://hydroinformatics.uiowa.edu/#"><img src="../app/images/footer/logotext_transparent.png"></a>
<a href="https://uiowa.edu/"><img src="../app/images/footer/DomeWordPrimary-BLACK.png"/></a>
</div>
<!-- Links to working group website and github -->
<div style="float:left; width:47.5%; padding-left:2.5%">
<p style="padding:0">© UIHI Lab 2019.
<a href="https://github.com/uihilab/WaterEthicsWebEngine" style="">Source Code.</a>
</p>
</div>
</div>
</div>
</body>
</html>