-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (52 loc) · 1.47 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
<?/*php require_once($_SERVER['DOCUMENT_ROOT'].'/tools/mailNotificationInclude.php');*/?>
<!DOCTYPE html>
<html lang="en">
<head>
<META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=UTF-8'>
<!-- META http-equiv="refresh" content="5;URL=http://somewhere.com" -->
<title>TQ White II on GitHub</title>
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<!--link rel='stylesheet' type='text/css' href='css/main.css' /-->
<style type='text/css'><!--
body {
color:#4B92D1;
font-family:sans-serif;
}
.horz{
height:100vh;
width:100vw;
/* distribute horizontally */
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
-webkit-justify-content: space-between;
justify-content: center;
}
.vert{
/* distribute vertically */
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
flex-direction: column;
-webkit-justify-content: space-between;
justify-content: center;
}
--></style>
</head>
<body class='horz'>
<div class='vert'>
<div id='centralContainer' style='width:40vw;'>
<div style='font-weight:bold;'>Welcome to my world.</div>
<div>Not much to see right now but it works.</div>
</div>
</div>
</body>
<script type='text/javascript'>
/* <![CDATA[ */
$(document).ready(function(){
$('#centralContainer').append("<p>Thanks for visiting!");
});
/* ]]> */
</script>
</html>