-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (50 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<title>Hello, Space Friends! </title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About me</a></li>
<li><a href="contactme.html">Contact me</a></li>
</ul>
</nav>
<h1>Space Doggo Adventures</h1>
<p>This is the first Space Doggo Adventure!</p>
<img src="https://i.imgur.com/cmtv1kO.png" alt="Space Doggo and the moon">
<h3>Space Doggo Budget</h3>
<table>
<caption class="title">Jan 1st - Feb 14th</caption>
<tr>
<th>Expenses</th>
<th>Cost</th>
</tr>
<tr>
<td>Fuel costs</td>
<td>6000 BDG</td>
</tr>
<tr>
<td>Hotel</td>
<td>1500 BDG</td>
</tr>
<tr>
<td>Fun</td>
<td>900 BDG</td>
</tr>
<tr>
<td>Food</td>
<td>500 BDG</td>
</tr>
</table>
<h2>Leave your awesome comment</h2>
<form>
<input placeholder="Your name" type="text" name="myfriendname">
<input placeholder="Your email address" type="email" name="email-address">
<textarea name="comment">Add your awesome comment here</textarea>
<input type="submit" name="submit" value="Send">
</form>
</body>
</html>