-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 2.8 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Malware Museum</title>
<link href="01.css" rel="stylesheet" type="text/css" media="all">
<link rel="icon" type="image/png" href="https://neothemes.neocities.org/images/favicon.gif" />
</head>
<body class="scroll">
<div id="container">
<div id="header">
<h1 class="title">The Malware Museum</h1>
</div>
<div id="wrapper">
<div id="two-boxes">
<div class="box-one scroll">
<div class="section-title">
Heading
</div>
<div class="content">
<p><strong>Examples</strong></p>
<ul>
<li>Fully responsive layout on any size device.</li>
<li>Fixed width divs that add a scrollbar as opposed to stretching.</li>
<li>Navigation section moves to top when window is resized.</li>
</ul>
</div>
</div>
<div class="box-two scroll">
<div class="section-title">Navigation</div>
<div class="nav-wrapper">
<button><a href="/">Home</a></button>
<button><a href="https://luagunsx.neocities.org">Author's Site</a></button>
<button><a href="https://archive.org/details/malwaremuseum">Internet Archive Collection</a></button>
<button><a href="dos.html">MS-DOS Viruses</a></button>
</div>
</div>
</div>
<div id="two-boxes">
<div class="box-three scroll">
<div class="section-title">Welcome to The Malware Museum!</div>
<div class="content">
<p>This website hosts computer programs that were distributed in the 1980s and 1990s on home computers. Once they infected a system, they would sometimes show animation or messages that you had been infected. Through the use of emulations, and additionally removing any destructive routines within the viruses, this site allows you to experience virus infection of decades ago with safety. </p>
</div>
</div>
<div class="box-four scroll">
<div class="section-title">Heading</a></div>
<div class="content">
<p>The great thing about this is that you can write as much as you like, and it just adds a scrollbar. Just keep writing until you can write no more!</p>
</div>
</div>
</div>
<div id="footer">
<p>© Layout by <a href="https://neothemes.neocities.org/" target="_blank">NeoThemes</a></p>
</div>
</div>
</body>
</html>