Lab # 1
Introduction to html & CSS
Lab1-5-static-page-with-div.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Static web page</title> <style> *{margin:0; padding:0;} </style> </head> <body width="960px"> <div> <h1 align="center">Practical Server</h1> </div> <div> <img width="100%" src="code_banner.jpg"> </div> <div> <div> <ul style="display:flex; list-style:none;"> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> </ul> </div> </div> <div style="background: #f1f1f1; width: 70%"> <img src="practicalserver-logo.png"> <a href="#">Read More....</a> </div> <br><br><br><br> <div style="background: #262626; color:white; text-align: center; height: 20vh; padding-top:10vh" > <p>Copyright © Practical Server 2018</p> </div> </body> </html>
Output
Static Web page by practical server |
Happy Coding :)
0 Comments
Post a Comment