HTMLify
Game.html
Views: 547 | Author: amar
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 35 36 37 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Go Biome</title> <link rel="stylesheet" href="css/styles.css"> </head> <body style="background-color:burlywood"> <script src="index.js"></script> <div class="rectangle"> <div class="rectangle1"> <div class="circle"> <div class="image"> <img src="images/board_game.png" style="width: 110%"> </div> </div> <p style="color:rgba(15, 13, 13, 0.66);" id="header">Let's play a board game with friends/family </p> </div> <div class="button">START NOW</div> <div class="button1">LATER</div> </div> </body> </html> |