|
4 | 4 | <meta charset="UTF-8" />
|
5 | 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
| - <title>Binary Search Algorithm - By Amirhossein Allami</title> |
| 7 | + <meta name="author" content="Amirhossein Allami"> |
| 8 | + <meta name="keywords" content="HTML, CSS, JavaScript, Algorithm, Binary Search Algorithm"> |
| 9 | + <meta name="description" content="Binary Search Algorithm Tutorial"> |
| 10 | + <title>Binary Search Algorithm - Created by Amirhossein Allami</title> |
8 | 11 | <link rel="stylesheet" href="style/style.css" />
|
9 | 12 | </head>
|
10 | 13 | <body>
|
11 |
| - <div class="div"> |
| 14 | + <div class="container"> |
12 | 15 | <div class="titles-holder">
|
13 | 16 | <h2 class="header-h2">Binary Search Algorithm</h2>
|
14 |
| - <p class="header-text"> |
15 |
| - I will find your chosen number, between 1000 numbers in the lowest |
16 |
| - estimates |
17 |
| - </p> |
18 | 17 | </div>
|
19 | 18 | <div class="guesses">
|
20 | 19 | <p class="text-guess"></p>
|
21 | 20 | <p class="text-guess2"></p>
|
22 |
| - <p class="text-guess3"> |
23 |
| - <span class="Bold">Attention!</span> If you answer even one of the |
24 |
| - questions <br /> |
25 |
| - incorrectly, the number will not be found. |
26 |
| - </p> |
27 | 21 | </div>
|
28 | 22 | <div class="buttons-div">
|
29 |
| - <button class="btns" id="OK">Ok</button> |
| 23 | + <button class="btns" id="OK">OK</button> |
30 | 24 | <button class="btns" id="Yes">Yes</button>
|
31 | 25 | <button class="btns" id="No">No</button>
|
32 | 26 | <button class="btns" id="Higher">Higher 👆</button>
|
|
0 commit comments