How to create a contact form using HTML and Css. In this post, you will be learning how to create a contact form using HTML and Css. You can copy the code, modify it and use it anywhere. Code <!DOCTYPE html> <html> <head> <title>Page Title</title> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" / <link href="https://fonts.googleapis.com/css?family=Pacifico|Lobster|Orbitron|Crushed" rel="stylesheet"> <style type="text/css" media="all"> * { box-sizing: border-box; } html, body { margin: 0; padding: 0; } #tlo{ font-famil...
Create a Side Bar in HTML Creating a sidebar is pretty cool easy to understand. If you don't understand anything, feel free to comment or message me. CODE <!DOCTYPE html> <html> <head> <title>Creating a side bar</title> </head> <body> <div id="nav"> <div id="nav_open">☰</div> <div id="nav_con"> <a href="#">Link1</a> <a href="#">Link2</a> <a href="#">Link3</a> </div> </div> <style> #nav_open{ font-si...