-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (46 loc) · 2.6 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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- helps to scale for other devices like phone but it is not perfect and it you do plan to use this on phones you might want to develop something else -->
<link rel="icon" href="http://icons.iconarchive.com/icons/thehoth/seo/256/seo-web-code-icon.png" /> <!-- Code to put a custom image on the tab in a web browser -->
<title>Toby Forbes</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<!-- <body background="https://d2v9y0dukr6mq2.cloudfront.net/video/thumbnail/EvVhCC0deijtsl1b4/videoblocks-programming-code-background-abstract-seamless-loop-animation_bklmxmhjw_thumbnail-full01.png"> -->
<style>
body,h1 {font-family: "Raleway", sans-serif}
body, html {height: 100%}
.bgimg {
background-image: url('https://d2v9y0dukr6mq2.cloudfront.net/video/thumbnail/EvVhCC0deijtsl1b4/videoblocks-programming-code-background-abstract-seamless-loop-animation_bklmxmhjw_thumbnail-full01.png');
min-height: 100%;
background-position: center;
background-size: cover;
}
#parent {width: 100%; bottom: 0; padding-bottom: 5%}
#github {float:right; width: 20% ; height: 10px; border: 1px solid rgba(1,0,0,0); position: absolute; bottom: 0; padding-left: 79%; padding-bottom: 85px;}
#email {float:left; width: 20% ; height: 10px; border: 1px solid rgba(1,0,0,0); position: absolute; bottom: 0; padding-right: 77%; padding-bottom: 75px;}
#parent p {clear:both;}
</style>
<body>
<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
<div class="w3-display-topleft w3-padding-large w3-xlarge"> <!-- changes the text at the top of the page-->
Toby Forbes
</div>
<div class="w3-display-middle">
<h1 class="w3-jumbo w3-animate-top">COMING SOON</h1>
<hr class="w3-border-grey" style="margin:auto;width:40%">
</div>
</div>
<div id="github">
<a href="https://github.com/TobyForbes" target="_blank"> <!-- Links the picture to my github, you can change that to whatever you want and the "target="_blank"" opens it in a new tab-->
<img border="0" alt="github" src="https://www.appnovation.com/sites/default/files/2016-12/github.png" height="90">
</a>
</div>
<div id="email">
<a href="mailto:tobyforbes@programmer.net?Subject=Hello!" target="_top">
<img border="0" alt="email" src="http://latinsparks.ca/wp-content/uploads/2017/01/email-icon.png" height="70">
</a>
</div>
</body>
</html>