Created
August 25, 2015 03:23
-
-
Save mchayapol/97697330d158608fe796 to your computer and use it in GitHub Desktop.
Sample HTML Table layout
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> | |
| <head> | |
| <style> | |
| td { | |
| //border: 1px solid black; | |
| } | |
| body { | |
| font-family: arial; | |
| } | |
| .profile { | |
| box-shadow: 10px 10px 5px #aaaaaa; | |
| } | |
| .footer { | |
| color: white; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <table width="600px"> | |
| <tr> | |
| <td> | |
| <table width="100%" height="200px"> | |
| <tr> | |
| <td width="200px"> | |
| <img src="profile.jpg" width="300px" class="profile"> | |
| </td> | |
| <td align="center"> | |
| <h1>Dwayne Johnson</h1> | |
| <p> | |
| </p> | |
| </td> | |
| </tr> | |
| </table> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td height="200px" bgcolor="#aeaeae "> | |
| <h1>Biography</h1> | |
| Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum. Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum lacinia arcu eget nulla. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Curabitur sodales ligula in libero. Sed dignissim lacinia nunc. Curabitur tortor. Pellentesque nibh. Aenean quam. In scelerisque sem at dolor. Maecenas mattis. Sed convallis tristique sem. Proin ut ligula vel nunc egestas porttitor. | |
| </td> | |
| </tr> | |
| <tr> | |
| <td bgcolor="black"> | |
| <table width="100%" height="100px"> | |
| <tr> | |
| <td> | |
| <iframe width="200px"src="https://www.youtube.com/embed/WJP6uj8T9zc" frameborder="0" allowfullscreen></iframe> | |
| </td> | |
| <td> | |
| <p class="footer"> | |
| Address<br> | |
| Email<br> | |
| Phone<br> | |
| </p> | |
| </td> | |
| <td align="right"> | |
| <img src="facebook29.png"> | |
| <img src="instagram19.png"> | |
| <img src="twitter.png"> | |
| </td> | |
| </tr> | |
| </table> | |
| </td> | |
| </tr> | |
| </table> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment