Oops something went wrong html code Mohd Usman 1 minute read Something Went Wrong Html, CSSis HTML aur CSS ka use karke aap Error box bhi bana sakte hain. Example: HTML <div class="box"><br/><br/> <img src="https://cdn.iconscout.com/icon/free/png-512/dizzy-face-cross-error-emoji-37675.png" width="70" class="center"/> <h2>Oh No</h2> <h3>Something Went Wrong</h3> <h3><button class="btn success" onclick="window.location.href='https://usmanplus.blogspot.com'">Go to Home</button></h3> </div> CSS .box { box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12) ; min-height: 280px; width: 40vw; margin: 100px auto; border-radius: 5px; background-image: url("https://i.ibb.co/ZmbV1fy/background.png"); background-repeat: no-repeat; } .center { display: block; margin-left: auto; margin-right: auto; width: 25%; } h2 {font-family:Verdana; text-align:center;color:white;} h3{text-shadow:2px 2px 3px black;color: white;text-align:center;} .btn { border: 2px solid black; background-color: white; color: black; padding: 10px 15px; font-size: 16px; cursor: pointer; margin-bottom:15; } /* Green */ .success { border-color:white; color: white;background:none; } .success:hover { background-color: teal; color: white;; } HTML