How To Code A Website For Beginners
WittySmirk
This is a video that teaches you how to code a website(especially if you are a beginner)
Css: input[type=text], select, textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; margin-top: 6px; margin-bottom: 16px; resize: vertical }
input[type=submit] { background-color: #0000FF; color: white; padding: 12px 20px; border: none; border-radius: 4px; cursor: pointer; } input[type=submit]:hover { background-color: #00008b; }
.container { border-radius: 5px; background-color: #f2f2f2; padding: 20px; }
body {font-family: Arial;}
/* Style the tab */ .tab { overflow: hidden; border: 1px solid #0000FF; background-color: #0000FF; }
.tab button { background-color: inherit; color: #FFFFFF; float: middle; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; font-size: 17px; }
.tab button:hover { background-color: #00008b; }
.tab button.active { background-color: #00008b; }
.tabcontent { display: none; padding: 6px 12px; -webkit-animation: fadeEffect 1s; animation: fadeEffect 1s; }
@-webkit-keyframes fadeEffect { from {opacity: 0;} to {opacity: 1;} }
@keyframes fadeEffect { from {opacity: 0;} to {opacity: 1;} } .wsimage { display: block; width: 200px; height: 200px; margin-left: auto; margin-right: auto; } ... https://www.youtube.com/watch?v=J_w1HDzXbrE
32300847 Bytes