1-Open w3schools tryit editor by this link: https://www.w3schools.com/html/tryit.asp?filename=tryhtml_basic then copy this code then paste it in w3schools tryit editor : <html> <head> <title> Photography WebSite </title> <link rel="stylesheet" href="style.css"> <style> * { margin: 0; padding: 0; } .main { /* height: 1000px; */ width: 75%; margin: auto; font-family:'Trebuchet MS'; } .header { height: 200px; background: linear-gradient(to right, #654ea3, #eaafc8); color: white; text-align: center; border-radius: 5px; } .header h2 { font-size: 32px; font-weight: lighter; padding: 20px; } .header h1 { font-size: 40px; } .preview_container { ...
Comments
Post a Comment