-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpindler_ES6_Strings.html
34 lines (33 loc) · 1.04 KB
/
Spindler_ES6_Strings.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
<html>
<head>
<title>Strings</title>
</head>
<body>
<div id="flossing"></div>
<script>
let A = prompt('A piece of Clothing')
let B = prompt('Part of Body')
let C = prompt('Part of Body')
let D = prompt('Verb base Form')
let E = prompt('Part of Body')
let F = prompt('Verb base Form')
let G = prompt('Noun Plural')
let H = prompt('Noun Plural')
let I = prompt('Verb base Form')
let output = `
1)Put on some music<br/>
2)Put on a ${A} (optional)<br/>
3)Stand with your ${B} ever so slightly bent<br/>
4)Put your hands in fists<br/>
5)Place your ${C},relaxed, at the side of your body<br/>
6)Begin to ${D} your ${E} left and right around your torso in the<br/>
opposite direction to your hips<br/>
7)Keep doing it and increase speed and ${F}${G} occasionally for<br/>
effect<br/>
After building confidence, you can also ${H}${I} with your arms if<br/>
desired, but this is not mandatory<br/>
`
document.getElementById('flossing').innerHTML = output
</script>
</body>
</html>