-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspringsteen.html
35 lines (29 loc) · 1004 Bytes
/
springsteen.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>The random Bruce Springsteen song title generator</title>
<link rel="stylesheet" type="text/css" href="springsteen-style.css">
<link media="only screen and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2)"
rel="stylesheet" type="text/css" href="springsteen-style-retina-portrait.css">
<link media="only screen and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2)"
rel="stylesheet" type="text/css" href="springsteen-style-retina-landscape.css">
<script src="springsteen-script.js" type="text/javascript"></script>
</head>
<body>
<div id="titleDiv">
<h1>The random Bruce Springsteen song title generator</h1>
</div>
<div id="albumDiv">
<div id="bruceNameDiv" align="right">
<p id="bruceName">Bruce<br>Springsteen</p>
</div>
<div id="songNameDiv">
<p id="songName"></p>
</div>
</div>
<div id="buttonDiv">
<button id="button" type="button" onclick="generateTitle()">
Generate a song title</button>
</div>
</body>
</html>