-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (119 loc) · 3.41 KB
/
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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
<title>Nori's Cabin Of Shred</title>
</head>
<body>
<div id="Nori">
<h1>Nori's Cabin of Shred</h1>
<h2>____________________________________________ Shred of The Week</h2>
<img src="C:\Users\Brett\Desktop\projects\Jesse's Birthday Project\resources\images\Nori_rip.JPG" alt="Woof Woof!" />
<iframe width="320" height="240" src="https://www.youtube.com/embed/LiPWwd0WoRY?list=PLAxG8DXozlKPi3MucfyXLnmqvP6A4O6NF" title="HVOB - Dogs (Oliver Koletzki Remix)" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div id="banner">
<nav>
<ul>
<a href="#About"><li><strong>A</strong>bout</li></a>
<a href="#Booking"><li><strong>B</strong>ooking</li></a>
<a href="#Contact"><li><strong>C</strong>ontact</li></a>
</ul>
</nav>
</div>
<div id="About">
<h3>About</h3>
<p>Nori's Cabin of Shred is a mountainous wonderland nestled along the scenic Lake Tahoe. <br>
Nori's human friends are welcome to visit anytime and appreciate the natural paradise that is his home.<br>
As there are so many humans and so little Nori, Nori appreciates it when humans use his <strong>booking service</strong>.<br><br><br>
</p>
<br><br><br><br><br><br>
</div>
<div id="Booking">
<h3>Booking</h3>
<h4>July '22</h4>
<table>
<thead>
<tr>
<th scope = "col">Sunday</th>
<th scope = "col">Monday</th>
<th scope ="col">Tuesday</th>
<th scope ="col">Wednesday</th>
<th scope ="col">Thursday</th>
<th scope ="col">Friday</th>
<th scope ="col">Saturday</th>
</tr>
</thead>
<tbody>
<tr>
<td class="left"></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td><button onclick="">book</button>1</td>
<td>2</td>
</tr>
<tr>
<td class="left">3</td>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
</tr>
<tr>
<td class="left">10</td>
<td>11</td>
<td>12</td>
<td>13</td>
<td>14</td>
<td>15</td>
<td>16</td>
</tr>
<tr>
<td class="left">17</td>
<td>18</td>
<td>19</td>
<td>20</td>
<td>21</td>
<td>22</td>
<td>23</td>
</tr>
<tr>
<td class="left">24</td>
<td>25</td>
<td>26</td>
<td>27</td>
<td>28</td>
<td>29</td>
<td>30</td>
</tr>
<tr>
<td class="left">31</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<br><br><br><br><br><br>
</div>
<div id="Contact">
<h3>Contact</h3>
<br><br><br><br><br><br>
<img src="https://content.codecademy.com/courses/SemanticHTML/dogimage.jpeg"/>
<figcaption>Woof Woof!</figcaption>
</figure>
<audio controls>
<source src="https://content.codecademy.com/courses/SemanticHTML/dogBarking.mp3" type="audio/mp3">
</audio>
<video src="https://content.codecademy.com/courses/SemanticHTML/dog-video.mp4" controls>
</video>
<embed src="https://content.codecademy.com/courses/SemanticHTML/dog-on-beach.gif"/>
</div>
</body>
</html>