-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 1.01 KB
/
index.html
File metadata and controls
25 lines (24 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Random Name Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Abel|Open+Sans" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="https://code.responsivevoice.org/responsivevoice.js"></script>
<script src="jquery-3.3.1.js"></script>
</head>
<body>
<div class = "container">
<button class="male">male</button>
<button class="female">female</button>
</div>
<div class = "bottom">
<div id="results"></div>
</div>
<div id="footer"><p>Made By <a href="https://bookofbash.github.io/home/">Bashir Harrell</a> with <a href="https://responsivevoice.org/">ResponsieVoice.js</a> and <a href="https://www.behindthename.com/">BehindTheName</a></p></div>
<script src="main.js"></script>
</body>
</html>