-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
41 lines (36 loc) · 896 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!doctype html>
<html>
<head>
<title>This is the title of the webpage!</title>
<link rel="stylesheet" href = "index.css" >
</head>
<body>
<h1>This is a big header</h1>
<h2>This is a slightly smaller header</h2>
<h6>This is the smallest header </h6>
<p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p>
<table>
<tr>
<th>Fruit</th>
<th>Price</th>
<th>Color</th>
</tr>
<tr>
<td>Apple</td>
<td>$1</td>
<td>Red</td>
</tr>
<tr>
<td>Orange</td>
<td>$1.50</td>
<td>Orange</td>
</tr>
<tr>
<td>Grapes</td>
<td>$.50</td>
<td>Purple</td>
</tr>
</table>
<img src="index.jpg">
</body>
</html>