How to make logo and text in html and css. on December 21, 2021 Get link Facebook X Pinterest Email Other Apps How to make logo and text in Html and css only Html part new T Hello CSS part *{ margin: 0; padding: 0; box-sizing: border-box; } body{ min-height: 100vh; background: #333; margin-top: 150px; /* margin-left: 150px; */ } .new{ background: transparent; width: 100%; height: auto; box-shadow: 10px 15px 20px red, -10px -15px 20px red ; display: flex; justify-content: center; align-items: center; } .logo{ width: 50px; height: 50px ; border-top-left-radius: 160%; border-top-right-radius: 100%; background: #fff; position: relative; right: 130px; } p{ font-size: 60px; font-family: sans-serif; position: relative; left: 8px; bottom: 3px; color: rgb(245, 14, 14); } .text{ font-size: 40px; color:#fff; text-shadow: 10px 11px 21px #000; position: relative; left: -50px; } Comments
Comments
Post a Comment