Created
June 14, 2019 20:43
-
-
Save uruskan/a9d541ca2c04fee6dd7d2c705ac389db to your computer and use it in GitHub Desktop.
Really? You don't know HTML?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <style> | |
| body {background-color: powderblue;} | |
| .center { | |
| display: block; | |
| margin-left: auto; | |
| margin-right: auto; | |
| width: 30%; | |
| height: 30%; | |
| } | |
| table, th, td,caption { | |
| border: 1px solid black; | |
| background-color:black; | |
| color:whitesmoke; | |
| border-color:goldenrod; | |
| } | |
| th,td{ | |
| text-align:left; | |
| } | |
| </style> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Klanlar Online</title> | |
| </head> | |
| <body> | |
| <img class="center" src="klanlar.png" alt="Klanlar Oyun Logosu"> | |
| <p>Klanlar oynarak hem gerçek bir oyun oynamış olursunuz hem de para kazanabilirsiniz.</p> | |
| <table style="width:100%"> | |
| <caption>Oyuncu Bilgileri</caption> | |
| <tr> | |
| <th>Firstname</th> | |
| <th>Lastname</th> | |
| <th>Age</th> | |
| </tr> | |
| <tr> | |
| <td>Jill</td> | |
| <td>Smith</td> | |
| <td>50</td> | |
| </tr> | |
| <tr> | |
| <td>Eve</td> | |
| <td>Jackson</td> | |
| <td>94</td> | |
| </tr> | |
| </table> | |
| <dl> | |
| <dt>Hard Blocker</dt> | |
| <dd>When you don't know what do to, when to do...</dd> | |
| <dt>Deadlock</dt> | |
| <dd>When you are aware of the reality but can't really care about it.</dd> | |
| </dl> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment