Facebook
From farzana, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 168
  1. <!doctype html>
  2. <html>
  3.   <head>
  4.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <style>
  6.  
  7. * {
  8.   box-sizing: border-box;
  9. }
  10. .menu {
  11.   float:left;
  12.   width:20%;
  13.   text-align:center;
  14. }
  15. .menu a {
  16.   background-color:#e5e5e5;
  17.   padding:8px;
  18.   margin-top:7px;
  19.   display:block;
  20.   width:100%;
  21.   color:black;
  22. }
  23. .main {
  24.   float:left;
  25.   width:60%;
  26.   padding:0 20px;
  27. }
  28. .right {
  29.   background-color:#e5e5e5;
  30.   float:left;
  31.   width:20%;
  32.   padding:15px;
  33.   margin-top:7px;
  34.   text-align:center;
  35. }
  36.  
  37. @media only screen and (max-width:620px) {
  38.   /* For mobile phones: */
  39.   .menu, .main, .right {
  40.     width:100%;
  41.   }
  42. }
  43. </style>
  44.  
  45.  
  46.   </head>
  47.  
  48.  
  49. <body style="font-family:Verdana;color:##ffffff;">
  50.  
  51. <div style="background-color:#ffb366;padding:15px;text-align:center;">
  52.   <h1>Welcome to my Homepage!</h1>
  53. </div>
  54.  
  55.   <div style="overflow:auto">
  56.   <div class="menu">
  57.  
  58. <a href='/login'>Login</a>
  59. <a href='/register'>Register</a>
  60. <a href='/addrecepie'>Add Recipe</a>
  61. <a href='/list'>List</a>
  62. <a href='/search'>Search</a>
  63. <a href='/logout'>Logout</a>
  64. <a href='/weather'>Weather</a>
  65. <a href='/api'>API</a>
  66. <a href='/weatherform'>Weatherform</a>
  67.  
  68.  </div>
  69.  
  70.   <div class="main">
  71.     <h2>Lorum Ipsum</h2>
  72.     <p>Welcome to my Website, where you can access a vast variety of recepies from all around the globe. Be sure to create an account and add in your own recepies :) </p>
  73.  </div>
  74.  
  75.   <div class="right">
  76.     <h2>About</h2>
  77.     <p>IS52027D: Data, and the Web (2019-20) - Final App and Repo Assessment (Recipe Bank)</p>
  78.   </div>
  79. </div>
  80.  
  81. <div style="background-color:#e5e5e5;text-align:center;padding:10px;margin-top:7px;"> Farzana Miah - fmiah005 </div>
  82.  
  83. </body>
  84. </html>
  85.