-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathindex.html
23 lines (19 loc) · 912 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My Awesome Store</title>
<!--The following line loads in your CSS style sheet-->
<link rel="stylesheet" href="styles/index.css">
<!--The following line loads in 2 fonts from Google Fonts: Bad Script and Lato-->
<link href="https://fonts.googleapis.com/css?family=Bad+Script|Lato" rel="stylesheet">
<!--The following line loads in your JS script-->
<script src="js/todo.js"></script>
</head>
<body>
<h1>Welcome to my store!</h1>
<p>This store sells all kinds of items. We have old items and new items. Some items are more expensive than others.</p>
<img src="./resources/images/whatsInStore.png" class="starterImage" alt="a picture of a box that says what's in store for your store"></img>
<p>Feel free to delete this content! This is only to put down some html tags and css to get you started.</p>
</body>
</html>