-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.45 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
<html>
<head>
<title>PacHome</title>
<script src="https://use.fontawesome.com/7b964294a3.js"></script>
<link href="https://fonts.googleapis.com/css?family=Libre+Franklin:400,700,900" rel="stylesheet">
<!-- you'll want to listen to whatever Weather Icons says about this bit-->
<link rel="stylesheet" href="weather-icons.css">
<link rel="stylesheet" href="pachome_style.css">
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="makeithappen.js"></script>
<div class="container">
<div class="logo"><img src="pdghome.png"></div>
<div class="weather"><div id="conditionicon"></div><div id="temperature"></div><div id="location"></div><div id="conditions"></div>
<div class="search">
<form method="get" action="https://www.google.com/search">
<input type="text" id="GoogleSearch" name="q" value="" placeholder="What are you looking for now?"/>
<input type="submit" id="GoLook" value="Google Search" />
</form>
</div>
<div class="shortcuts">
<a href="http://www.facebook.com"><i class="fa fa-facebook-square" aria-hidden="true"></i></a>
<a href="http://www.twitter.com"><i class="fa fa-twitter-square" aria-hidden="true"></i></a>
<a href="http://www.youtube.com"><i class="fa fa-youtube-square" aria-hidden="true"></i></a>
<a href="http://www.reddit.com"><i class="fa fa-reddit-square" aria-hidden="true"></i></a>
</div>
<div class="sticker"></div>
</div>
</body>
</html>