Advertisement
TheiPhoneFan

Jordan's Blog Upgrade Warning Box

Apr 30th, 2024
746
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.87 KB | None | 0 0
  1. <!-- On 2024-04-30
  2. Iframe Embed:
  3. <iframe src="https://theiphonefan-beta.w3spaces.com/errors/upgrade-box.html" style="width:100%;height:235px;border-radius:16px;border-color:transparent;" scrolling="no"></iframe>
  4. -->
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8.     <link href="https://fonts.googleapis.com/css?family=Roboto:400,300,100,700,900" rel="stylesheet" type="text/css">
  9.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10.     <style>
  11.         body {
  12.             background-color: #FF0F0F;
  13.             border-radius: 16px;
  14.             height: 215px;
  15.         }
  16.         .upgrade-box p {
  17.             font-family: 'Roboto', sans-serif;
  18.             font-size: 20px;
  19.             font-weight: 300;
  20.             color:white;
  21.         }
  22.         .upgrade-box a {
  23.             text-decoration: underline;
  24.             color: yellow;
  25.         }
  26.         .upgrade-box a:hover {
  27.             text-decoration: none;
  28.         }
  29.         .flex-container {
  30.             display: flex;
  31.             flex-wrap: wrap;
  32.         }
  33.         .flex-container>div  /* Used to place content side-by-side. */  {
  34.             padding: 10px;
  35.             align-items: center;
  36.             align-content: center;
  37.         }
  38.         @media (max-width: 620px) {
  39.             img {
  40.                 display: none;
  41.             }
  42.         }
  43.     </style>
  44. </head>
  45. <body>
  46.  
  47. <div class="upgrade-box">
  48.     <div class="flex-container">
  49.         <div>
  50.             <a href="https://jordansblog.net" target="_blank">
  51.                 <img src="https://i.ibb.co/BC6zGrs/critical-error.png" width="200" style="border-radius: 16px;">
  52.             </a>
  53.         </div>
  54.         <div>
  55.             <p>This version of my website is out of date.
  56.             <br>Click <a href="https://jordansblog.net" target="_blank">here</a> to visit my new website
  57.             </p>
  58.         </div>
  59.     <div>
  60. </div>
  61.  
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement