mirror of
https://github.com/bckelley/Web-Browser-Homepage.git
synced 2026-08-24 03:24:13 -05:00
Minor changes
This commit is contained in:
+53
@@ -0,0 +1,53 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Get Started</title>
|
||||
<link href="styles.css" type="text/css" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css?family=Inter" 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>
|
||||
<body>
|
||||
<div class="glass">
|
||||
<div id="clock"></div>
|
||||
</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>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user