mirror of
https://github.com/bckelley/Web-Browser-Homepage.git
synced 2026-08-24 03:24:13 -05:00
52 lines
1.9 KiB
HTML
52 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<!-- Linked to styleHomepage.css -->
|
|
<!-- Linked to Roboto font on Google Font -->
|
|
<html>
|
|
<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">
|
|
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
|
<script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
|
|
<script src = "background.js"></script>
|
|
<script src = "clock.js"></script>
|
|
</head>
|
|
|
|
<div id = "clock"></div>
|
|
|
|
<div class = "boxContainer">
|
|
<div id = "twitch" class = "boxes">
|
|
<a href = "https://www.twitch.tv/directory">
|
|
<img src = "Pictures\twitch.png" width = "75" height = "75" alt = "Twitch"/>
|
|
</a>
|
|
</div>
|
|
|
|
<div id = "youtube" class = "boxes">
|
|
<a href = "https://www.youtube.com/feed/subscriptions">
|
|
<img src = "Pictures\youtube.png" width = "75" height = "75" alt = "Youtube"/>
|
|
</a>
|
|
</div>
|
|
|
|
<div id = "netflix" class = "boxes">
|
|
<a href = "https://www.netflix.com/browse">
|
|
<img src = "Pictures\netflix.png" width = "75" height = "75" alt = "Netflix"/>
|
|
</a>
|
|
</div>
|
|
|
|
<div id = "reddit" class = "boxes">
|
|
<a href = "https://www.reddit.com/">
|
|
<img src = "Pictures\reddit.png" width = "75" height = "75" alt = "Reddit"/>
|
|
</a>
|
|
</div>
|
|
|
|
<div id = "amazon" class = "boxes">
|
|
<a href = "https://smile.amazon.com/">
|
|
<img src = "Pictures\amazon.png" width = "75" height = "75" alt = "Amazon"/>
|
|
</a>
|
|
</div>
|
|
|
|
<button onclick = "changeImage()" type = "button">Change Image</button>
|
|
</div>
|
|
|
|
</html>
|