forked from kkkombo/HTML-CSS-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfigure.html
More file actions
25 lines (25 loc) · 863 Bytes
/
figure.html
File metadata and controls
25 lines (25 loc) · 863 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>HTML Boilerplate</title>
<meta name="author" value="Alexandra Dedok" />
<meta name="description" value="Learning HTML/CSS for fun and games and websites" />
<meta name="keywords" content="HTML, CSS" />
</head>
<body>
<!-- Code from.. code.html-->
<figure>
<figcaption>HTML markup for a simple table.</figcaption>
<pre><code>
<table border="1">
<head>
<th colspan="4">Aaron Judge</th>
<th>RF</th>
</head>
<body>
<tr role="header">
<td>Year</td>
</code></pre>
</figure>
</body>
</html>