-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathw13table_html.html
More file actions
79 lines (70 loc) · 2.01 KB
/
Copy pathw13table_html.html
File metadata and controls
79 lines (70 loc) · 2.01 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>W13 HTML table Example</title>
<link href="main.css" rel="stylesheet">
</head>
<header>
<nav>
<!--the a tag is the anchor tag - it creates a hyperlink -->
<a href="index.html"> Home </a>
</br> <a href="boards.html">Boards</a>
</br> <a href="game.html">Game</a>
</br> <a href="palindrome.html">Palindrome</a>
</br> <a href="basics.html">Basics</a>
</br> <a href="strings.html">Strings</a>
</br> <a href="w11sound.html">Sound</a>
</br> <a href="w13table_html.html">Table</a>
</nav>
</header>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
<body>
<h1> This is an example of a table written in HTML</h1>
<h2>Programming History </h2>
<!-- create the html table -->
<table>
<tr>
<!-- th is table heading; th tahs can be vertical and/or horizontal -->
<th>Language</th>
<th>Fact</th>
</tr>
<!-- tr is table row -->
<tr>
<!-- td is the table column -->
<td>HTML</td>
<td>HTML(Hypertext Markup Language) was created by Tim Berners-Lee in 1991 while working at CERN.</td>
</tr>
<tr>
<td> JavaScript</td>
<td> JavaScript was created by Brendan Eich while working at Netscape.</td>
</tr>
<tr>
<td>Python</td>
<td>Python was created by Guido van Rossum and released in 1991</td>
</tr>
<tr>
<td>C++</td>
<td>C++ was developed by Bjarne Stroustrup at Bell Labs as an extension of the C programming language</td>
</tr>
<tr>
<td>Java</td>
<td>Java was developed by James Gosling at Sun Microsystems and first released in 1995.</td>
</tr>
</table>
</body>
</html>