-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcode.html
More file actions
25 lines (23 loc) · 898 Bytes
/
code.html
File metadata and controls
25 lines (23 loc) · 898 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="keywords" content="HTML, CSS" />
</head>
<body>
<!-- Here goes content. None found.-->
<p>If you need to display multiple lines of code, place the <code><code></code> element inside a <code><pre></code> element.</p>
<p>In completely unrelated news, here’s a bit of the code for a table that you’ll encounter again in Chapter 8:</p>
<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>
</body>
</html>