'CSS bootstrap conflict duplicate select option

Hello this is my first post I am new to web development and having a wired issue . when i add select options it gets a dublicate text just below it which is labelled as no 2 and i dont want it . enter image description here my html code

                            <select>
                        <option value="Hafizabad">Pakistan</option>
                        <option value="Hafizabad">USA</option>
                        <option value="Hafizabad">Russia</option>
                            </select>


Solution 1:[1]

Please check that options are given inside the select element like below

<select>
  <option value="one">One</option>
</select>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 rohithpoya