-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Random Domain Generator</title>
<script src="./js/dictionary.js"></script>
<script>window.onload = function() {Particles.init({selector: '.background'});};</script>
<link rel="stylesheet" href="./css/main.css">
</head>
<body><div class="bodyalign"></div>
<div class="container">
<div class="windowbox">
<h1 style="border-bottom: 2px dotted #ffffff;">Random Domain Generator</h1>
<h4>Feeling uncreative? Try out our domain generator and have your computer pick the domain name for you!</h4>
<h4>TLD(s) Generated: <span style="color:purple">.gq, .ga, .cf, .ml</span>.</h4>
<form name="myForm">
Your new site: <input name="theDomain" maxlength="100" type="text" size="20" value="Click A Button To Generate!">
<h5>This generator uses <span style="color:purple">Adjective-Noun-Verb-Adverb</span> generation.</h5>
<input type="button" value="One Word Domain" onclick="newDomain1()">
<input type="button" value="Two Word Domain" onclick="newDomain2()">
<input type="button" value="Three Word Domain" onclick="newDomain3()">
<input type="button" value="Four Word Domain" onclick="newDomain4()">
</form>
<h4 style="margin-top: 10px; border-top: 2px dotted #ffffff; padding-top:8px;">This generator was created by LQ16, check out my Github at: <a href="https://github.com/LQ16">www.github.com/LQ16</a></h4>
<h4>Wallpaper created using <a href="https://github.com/marcbruederlin/particles.js">particles.js</a></h4>
</div>
</div>
<canvas class="background"></canvas>
<script src="./js/walls.js"></script>
</body>