File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 < link rel ="stylesheet " href ="style.css ">
88</ head >
99< body >
10+ < h1 > Welcome to Practice Assignment</ h1 >
11+ < button type ="button "> Player 1: Chris</ button >
12+ < button onclick ="createParagraph() "> Click me!</ button >
13+ < h1 > Number guessing game</ h1 >
14+
15+ < p >
16+ We have selected a random number between 1 and 100. See if you can guess
17+ it in 10 turns or fewer. We'll tell you if your guess was too high or too
18+ low.
19+ </ p >
20+
21+ < div class ="form ">
22+ < label for ="guessField "> Enter a guess: </ label >
23+ < input
24+ type ="number "
25+ min ="1 "
26+ max ="100 "
27+ required
28+ id ="guessField "
29+ class ="guessField " />
30+ < input type ="submit " value ="Submit guess " class ="guessSubmit " />
31+ </ div >
32+
33+ < div class ="resultParas ">
34+ < p class ="guesses "> </ p >
35+ < p class ="lastResult "> </ p >
36+ < p class ="lowOrHi "> </ p >
37+ </ div >
1038 < script src ="app.js "> </ script >
1139</ body >
1240</ html >
You can’t perform that action at this time.
0 commit comments