-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 2.62 KB
/
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
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Semantics Website</title>
</head>
<body>
<h1>First, here is an image and a caption:</h1>
<figure>
<img src="music.jpg" alt="Music Man">
<figcaption>Fig1. - A man chilling with some sick beats.</figcaption>
</figure>
<h2>Next, here is a list with italicized and blold text:</h2>
<ol>
<li>UW is the <em>best</em> university.</li>
<li>I know because <strong>I go there!</strong></li>
</ol>
<h3>The following text is an section:</h3>
<section>
<h2>This section contains articles from Wikipedia about famous computer scientists.</h2>
<article>
<h4>Alan Turing</h4>
<p>Alan Mathison Turing OBE FRS (/ˈtjʊərɪŋ/; 23 June 1912 – 7 June 1954) was an English mathematician, computer scientist, logician, cryptanalyst, philosopher and theoretical biologist.[6] Turing was highly influential in the development of theoretical computer science, providing a formalisation of the concepts of algorithm and computation with the Turing machine, which can be considered a model of a general-purpose computer.[7][8][9] Turing is widely considered to be the father of theoretical computer science and artificial intelligence.[10] Despite these accomplishments, he was never fully recognised in his home country during his lifetime, due to his homosexuality, which was then a crime in the UK.</p>
</article>
<hr>
<article>
<h4>Ada Lovelace</h4>
<p>Augusta Ada King, Countess of Lovelace (née Byron; 10 December 1815 – 27 November 1852) was an English mathematician and writer, chiefly known for her work on Charles Babbage's proposed mechanical general-purpose computer, the Analytical Engine. She was the first to recognise that the machine had applications beyond pure calculation, and published the first algorithm intended to be carried out by such a machine. As a result, she is sometimes regarded as the first to recognise the full potential of a "computing machine" and one of the first computer programmers.</p>
</article>
</section>
<aside>
<h2>This is an aside, with only indirectly related information.</h2>
<blockquote cite="https://www.colgate.com/en-us/products/toothpaste">
<p>9 out of 10 dentists recommend Colgate toothpaste.</p>
<footer>According to <cite>Some sketchy dentists.</cite></footer>
</blockquote>
<p>I wake up at: <time>10:00</time> most days.</p>
<h6>This is the end of the aside.</h6>
</aside>
<footer>
<p>This is the footer and the end of the website.</p>
</footer>
</body>
</html>