-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (73 loc) · 3.05 KB
/
Copy pathindex.html
File metadata and controls
79 lines (73 loc) · 3.05 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/index.css">
<script src="/JS/addcart.js" async defer></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<header>
<img id="logo" src="/images/whiterun.png">
<div id="name">
Belathor's General Goods
</div>
<div id="headerul">
<ul>
<li class="headerli">
<a href="/html/home.html">HOME</a>
</li>
<li class="headerli">
<a href="/html/shop.html">SHOP</a>
</li>
<li class="headerli">
<a href="/html/cart.html">CART</a>
</li>
<li class="headerli">
<a href="/html/signin.html">LOG IN</a>
</li>
</ul>
</div>
</header>
<body id="home">
<p id="hello">"Everything's for sale, my friend. Everything. If I had a sister, I'd sell her in a second."</p>
<p class="welcome">Welcome to Belethor's General Goods<br>The best prices in all Tamriel guaranteed!</p>
<p class="specialtext">Todays Specials!</p>
<div class="specials">
<div>
<img id="heart" src="/images/Daedra_heart.png" alt="Daedra_heart"><br> Daedric Heart<br>
<div id="goldtext">750g</div><button onclick="addToCart('/images/Daedra_heart.png','Daedra_heart','750')">Add to cart</button>
</div>
<div>
<img id="potion" src="/images/potion.png" alt="potion"><br> Potion of Strength<br>
<div id="goldtext">75g</div><button onclick="addToCart('/images/potion.png','Strength_potion','75')">Add to cart</button>
</div>
<div>
<img id="book" src="/images/Conjurationbook.png" alt="conjurationbook"><br> Conjuration Tome<br>
<div id="goldtext">150g</div><button onclick="addToCart('/images/Conjurationbook.png','Conjuration_book','150')">Add to cart</button>
</div>
<div>
<img id="blacksoul" src="/images/BlackSoulGem.png" alt="blacksoulgem"><br> Black SoulGem<br>
<div id="goldtext">500g</div><button onclick="addToCart('/images/BlackSoulGem.png','Black_soulgem','500')" id="item23">Add to cart</button>
</div>
</div>
<div id="footer">
<div>
<img id="belathor" src="/images/belathor.png">
</div>
<div>
<img id="map" src="/images/map.jpg">
</div>
<div>
<p id="contacttext">contact me:<br><a id="email" href="mailto: david-rowe2@live.nmit.ac.nz">Belathor@bestshopever.co.skyrim</a></p>
<p id="storelocation">Belathor's General Goods<br>Whiterun, Skyrim, Tamriel.</p>
<audio controls style="margin: 0 auto; display: block;">
<source src="/audio/Dragonborn.mp3" type="audio/mpeg">
</audio>
</div>
</div>
</body>
</html>