Advertisement
suhaniarora

Untitled

Oct 19th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.09 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>DotNotebook</title>
  5. <link rel="stylesheet" type="text/css" href="style.css">
  6.     <meta charset="utf-8">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1">
  8.     <style>
  9.             body {
  10.               margin: 0;
  11.             }
  12.  
  13.     /* Style the header */
  14.         .header {
  15.             background-color: #f1f1f1;
  16.                 padding: 20px;
  17.                 text-align: center;
  18.         }  
  19.     /* Create three unequal columns that floats next to each other */
  20.         .column {
  21.             float: left;
  22.             padding: 10px;
  23.             }
  24.  
  25.     /* Left and right column */
  26.         .column.side {
  27.             width: 25%;
  28.             background-color: #f1f1f1;
  29.         }
  30.  
  31.     /* Middle column */
  32.         .column.middle {
  33.             width: 50%;
  34.         }
  35.  
  36.     /* Clear floats after the columns */
  37.         .row:after {
  38.             content: "";
  39.             display: table;
  40.             clear: both;
  41.         }
  42.  
  43.     /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
  44.         @media screen and (max-width: 600px) {
  45.             .column.side, .column.middle {
  46.             width: 100%;
  47.             }
  48.         }
  49.  
  50.     /* Style the footer */
  51.         .footer {
  52.             background-color: #f1f1f1;
  53.             padding: 10px;
  54.             text-align: center;
  55.         }  
  56.     </style>
  57. </head>
  58. <body>
  59.  
  60.     <div class="header">
  61.         <h1>Dot Notebook</h1>
  62.     </div>
  63.  
  64.  
  65.     <div class="row">
  66.  
  67.  
  68.  
  69.     <div class="column side">
  70.    
  71.  
  72.     <h2>Tool Bar</h2>
  73.         <div style="width:150px;height:270px;border:2px solid #000;">
  74.             <br>
  75.             <br>
  76.             <button class="btn">Draw Line</button>
  77.  
  78.             <br>
  79.             <br>
  80.             <br>
  81.             <button class="btn">Draw Circle</button>
  82.             <br>
  83.             <br>
  84.             <br>
  85.             <button class="btn">Draw Text Box</button>
  86.  
  87.         </div>
  88.         <h2>Text Tool Bar</h2>
  89.         <div style="width:150px;height:270px;border:2px solid #000;">
  90.     </div>
  91.   <div class="column middle">
  92.         <h2>Your Notes</h2>
  93.             <textarea>
  94.                
  95.             </textarea>
  96.     </div>
  97.  
  98.     <div class="column side">
  99.  
  100.        
  101.         </div>
  102.     </div>
  103. </div>
  104.  
  105. <div class="footer">
  106.   <p><a href="http://google.com" target="_blank">Save your notes to PDF!</a></p>
  107. </div>
  108.  
  109. <div style="margin-top:500px"></div>
  110. </body>
  111. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement