File "4.html"

Full Path: /var/www/up.9oko.com/misc/4.html
File size: 1.1 KB
MIME-type: text/html
Charset: utf-8

<!DOCTYPE html>
<html>
<head>
  <title>iPhone Website</title>
  
  <style>
    body {
      background-color: black;
      text-align: center;
      font-family: system-ui;
    }
    
    .phone {
      width: 300px;
      height: 600px;
      margin: 50px auto;
      border: 15px solid black;
      border-radius: 36px;
      background: linear-gradient(#333, #000);
    }
    
    .header {
      height: 25px;
      background: linear-gradient(#ccc, #fff);
      border-radius: 25px 25px 0 0;
    }
    
    .content {
      height: 525px;
      background-color: white;
    }
    
    h2 {
      font-size: 18px;
      font-weight: 600;  
      margin-top: 50px;
    }
    
    p {
      font-size: 14px;
      color: #777;
    }
    
    #contact {
      font-size: 24px; 
      font-weight: 800;
      margin: 50px 0;
    }
  </style>
  
</head>

<body>

  <div class="phone">
  
    <div class="header"></div>
  
    <div class="content">
    
      <h2>System Administrator</h2>
      
      <p id="contact">Get in Touch</p>
      
      <p>Contact: tom@oko.lan</p>
      
    </div>
  
  </div>
  
</body>
</html>