generated from GarrettNutting/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (42 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hello World</title>
<link rel="stylesheet" href="screen.css">
</head>
<body>
<main>
<h1>HelloWorld</h1>
<div class="masthead">
</div>
<div class="details">
<section>
<h2>History</h2>
<p>Test programs have always existed in software development, but the tradition of using "Hello, World!" as a test message was influenced by an example program in the 1978 book The C Programming Language. The example was taken from a 1974 Bell Laboratories internal memorandum by Brian Kernighan, one of the co-creators of the Unix operating system.</p>
</section>
<section class="with-code">
<div class="code-copy">
<h2>Example</h2>
<p>Here is a JavaScript example:</p>
</div>
<div class="code-html">
<pre><code>
<!DOCTYPE HTML>
<html>
<body>
<script>
alert('Hello, world!');
</script>
</body>
</html>
</code></pre>
</div>
</section>
</div>
</main>
<script src="index.js"></script>
</body>
</html>