mystartpage/index.html

95 lines
3.6 KiB
HTML
Raw Normal View History

2016-02-09 00:40:30 +01:00
<!DOCTYPE html>
<html>
<!--
2016-02-09 01:01:58 +01:00
This i a person homepage that I made with code i stole mostly from /r/startpages as
well as from other places. I don't take credit for anything except putting the pieces
together.
2016-02-09 00:40:30 +01:00
-->
<head>
<meta charset="utf-8" />
2016-02-09 05:44:01 +01:00
<title>meme machine</title>
2016-02-09 00:40:30 +01:00
<link rel="stylesheet" type='text/css' href="./font-awesome-4.5.0/css/font-awesome.min.css">
2016-02-09 05:41:55 +01:00
<link rel="stylesheet" type="text/css" href="css/homepage.css"/>
<script src="./js/weather.js" type="text/javascript">
2016-02-09 04:15:08 +01:00
</script>
2016-02-09 00:40:30 +01:00
</head>
<body>
<style type="text/css" media="all">
@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);
html, body
{ margin:0; padding:0; }
html, body
{ background:#2D2D2D; }
.row
{ text-align:center; margin-top: 250px;}
.row .column
{ display: inline; letter-spacing:0.5em; }
.row .column a
{ font-size: 250%; color:rgba(0,0,0,0) }
.row .column a:not(:hover)
{ opacity:.5; transition: opacity .5s; }
.envelope i{color:#78C5D7;}
.youtube-play i{color:#459BA8;}
.github i{color:#79C268;}
.usd i{color:#C5D747;}
.reddit-alien i{color:#F5D63D;}
.leaf i{color:#F48C33;}
.lastfm i{color:#E868A3;}
.envelope1 i{color:#BF63A6;}
</style>
2016-02-09 04:15:08 +01:00
<!--<div id="weather"></div> -->
2016-02-09 00:40:30 +01:00
<div class="row">
<div class="column">
<a href="https://mail.google.com/mail/u/1/#inbox" class="envelope">
<i class="fa fa-envelope"></i>
</a>
</div>
<div class="column">
<a href="https://www.youtube.com/feed/subscriptions" class="youtube-play">
<i class="fa fa-youtube-play"></i>
</a>
</div>
<div class="column">
2016-02-11 23:12:30 +01:00
<a href="https://github.com/allgenesconsidered" class="github">
2016-02-09 00:40:30 +01:00
<i class="fa fa-github"></i>
</a>
</div>
<div class="column">
<a href="https://www.patelco.org/" class="usd">
<i class="fa fa-usd"></i>
</a>
</div>
<div class="column">
<a href="https://www.reddit.com/" class="reddit-alien">
<i class="fa fa-reddit-alien"></i>
</a>
</div>
<div class="column">
<a href="http://boards.4chan.org/" class="leaf">
<i class="fa fa-leaf"></i>
</a>
</div>
<div class="column">
<a href="'http://www.last.fm/user/njnoise'" class="lastfm">
<i class="fa fa-lastfm"></i>
</a>
</div>
<div class="column">
<a href="https://mail.google.com/mail/u/2/#inbox" class="envelope1">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
<div>
<form method="get" action="http://www.ncbi.nlm.nih.gov/pubmed/?">
<input class='search' name='term' type='text' placeholder='PubMed'/>
</form>
<BR>&nbsp;<BR>
2016-02-11 23:12:30 +01:00
<form method="get" action="https://duckduckgo.com/?">
<input class='search' name='q' type='text' placeholder='DuckDuckGo'/>
2016-02-09 00:40:30 +01:00
</form>
</div>
</body>
</html>