Skip to content

Commit

Permalink
Added a title to the webpage
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul committed Dec 15, 2013
1 parent 5200880 commit a9ed2cc
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions web/index.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<!doctype html>
<html>
<head>
<title>
Horoscope Generator | Statistically Insignificant Wisdom
</title>
<style>
html, body {
padding: 0;
margin: 0;
}
html {
min-width: 100%;
min-height: 100%;
Expand All @@ -12,17 +14,20 @@
background-repeat: no-repeat;
}
body {
width: 70%;
font-family: arial;
color: white;
background-color: rgba(50, 50, 50, .6);
width: 70%;
margin: 5% auto;
padding: 20px;
padding-top: 100px;
padding-bottom: 100px;
border-radius: 10px;
text-align: center;
font-family: arial;
color: white;
}
</style>

</head>
<body>
<h1><?php echo exec('python horoscope.py'); ?></h1>
</body>
</html>

0 comments on commit a9ed2cc

Please sign in to comment.