File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Practices & Exercises/Project_Exercises/GuessNumber Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+
4+ < head >
5+ < meta charset ="UTF-8 " />
6+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
7+ < title > Guess The Number</ title >
8+ < link rel ="stylesheet " href ="style.css " />
9+ </ head >
10+
11+ < body >
12+
13+ < div class ="game-container ">
14+ < h1 > 🎯 Guess The Number</ h1 >
15+ < p > Guess a number between < b > 1</ b > and < b > 100</ b > </ p >
16+
17+ < input type ="number " id ="guessInput " placeholder ="Enter your guess " />
18+ < button id ="guessBtn "> Check</ button >
19+
20+ < p class ="message " id ="message "> </ p >
21+ < p class ="chances "> Chances: < span id ="chances "> 0</ span > </ p >
22+ </ div >
23+
24+ < script src ="GuessNumber.js "> </ script >
25+ </ body >
26+
27+ </ html >
You can’t perform that action at this time.
0 commit comments