-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
54 lines (49 loc) · 1.52 KB
/
table.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Final Project for HTML5/CSS3 Course">
<meta name="keywords" content="HTML,CSS,JavaScript,jQuery">
<meta name="author" content="Rina Tambo Jensen">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>David Bowie Personas</title>
<link rel="apple-touch-icon" sizes="180x180" href="./assets/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/images/favicon-16x16.png">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,900" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- <link rel="stylesheet" type="text/css" href="./assets/stylesheets/flexboxgrid.min.css" /> -->
<link href="./assets/stylesheets/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1> this is a table page</h1>
<table>
<thead>
<tr>
<th>
Venue
</th>
<th>
Acts
</th>
<th>
Where to buy
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
DNA Lounge
</td>
<td>
Slipknot
</td>
<td>
<a href="#">Ticketmaster</a>
</td>
</tr>
</tbody>
</table>
</body>
</html>