Files
Web-Browser-Homepage/Homepage.html
T
2018-04-13 20:54:22 -04:00

56 lines
1.8 KiB
HTML

<!DOCTYPE html>
<!-- Linked to styleHomepage.css -->
<!-- Linked to Roboto font on Google Font -->
<html>
<div id = "background">
<script src = "jquery-3.1.1.js"></script>
<script src = "background.js"></script>
</div>
<head>
<Title>Homepage</Title>
<link href = "styleHomepage.css" type = "text/css" rel = "stylesheet">
<link href = "https://fonts.googleapis.com/css?family=Roboto:400,700" rel = "stylesheet">
</head>
<div id = "clock">
<script src = "jquery-3.1.1.js"></script>
<script src = "clock.js"></script>
</div>
<div class = "boxContainer">
<div id = "twitch" class = "boxes">
<a href = "https://www.twitch.tv/directory">
<img src = "Pictures\twitch.png" width = "100" height = "100" alt = "Twitch"/>
</a>
</div>
<div id = "youtube" class = "boxes">
<a href = "https://www.youtube.com/feed/subscriptions">
<img src = "Pictures\youtube.png" width = "100" height = "100" alt = "Youtube"/>
</a>
</div>
<div id = "netflix" class = "boxes">
<a href = "https://www.netflix.com/browse">
<img src = "Pictures\netflix.png" width = "100" height = "100" alt = "Netflix"/>
</a>
</div>
<div id = "reddit" class = "boxes">
<a href = "https://www.reddit.com/">
<img src = "Pictures\reddit.png" width = "100" height = "100" alt = "Reddit"/>
</a>
</div>
<div id = "amazon" class = "boxes">
<a href = "https://smile.amazon.com/">
<img src = "Pictures\amazon.png" width = "100" height = "100" alt = "Amazon"/>
</a>
</div>
</div>
</html>