-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht_shirt.html
52 lines (50 loc) · 1.79 KB
/
t_shirt.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Netflix Boot Camp -> T-Shirt</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body id = "t_shirt_website">
<!-- top navbar -->
<div class="navbar">
<h1>JL - AL - LJ Game Store</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="game.html">Game</a></li>
<li><a href="console.html">Console</a></li>
<li><a href="t_shirt.html">T-Shirt</a></li>
<li><a href="cart.html">Cart</a></li>
</ul>
<button class="start">Enter Our Game Store</button>
</div>
<a href="cart.html" class="logo"><img src="images/game.png" alt="game store icon" class="logo"></a>
<!-- form of the t-shirt -->
<div class="container">
<div class="t-shirt-logo" id="t-shirt-logo">
</div>
<div class="game-title">T-Shirt!</div>
<div class="inputs">
<label>Size</label>
<input id="size" type="text" placeholder="Max 20 characters long"/>
<label>Color</label>
<input id="color" type="text" placeholder="Max 20 characters long"/>
<label>Description</label>
<input id="t_shirt_description" type="text" placeholder="Max 255 characters long"/>
<label>Price</label>
<input id="t_shirt_price" type="number" step="any" placeholder="Max $999.99 and Min $0.00">
<label>Quantity</label>
<input id="t_shirt_quantity" type="number" placeholder="How many?"/>
<button id="submit" type="submit">Add to Cart</button>
</div>
</div>
<!-- image part of the body made with HTML and CSS -->
<div class="container2">
<div class="neck"></div>
<div class="body"></div>
<div class="arms"></div>
</div>
<script src="game.js"></script>
</body>
</html>