My Website
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create experimental.html

authored by

WillM and committed by
GitHub
e7f521e8 e0cae441

+42
+42
experimental/experimental.html
··· 1 + <html> 2 + <style> 3 + #mainweb 4 + { 5 + position: fixed; 6 + bottom: 10px; 7 + left: 10px; 8 + } 9 + </style> 10 + <head> 11 + <link rel="stylesheet" href="experiment.css"> 12 + <link rel="stylesheet" href="../styles.css"> 13 + <meta charset="UTF-8"> 14 + <meta name="viewport" content="width=device-width, initial-scale=1"> 15 + <title>Experimental Website</title> 16 + </head> 17 + <body> 18 + <div class="main"> 19 + <div class="header"> 20 + Experimental Website 21 + </div> 22 + 23 + <div id="window"> 24 + <div class=windowsubheader> 25 + <div id="windowheader">Window</div> 26 + </div> 27 + <div class="windowtext"> 28 + Hello this is my experimental website 29 + </div> 30 + <div class="windowtext"> 31 + You are welcome to look around 32 + </div> 33 + </div> 34 + 35 + <script src="experiment.js"></script> 36 + 37 + <div id="mainweb" class="text"> 38 + <a href="../index.html"> Back to main </a> 39 + </div> 40 + </div> 41 + </body> 42 + </html>