Advertisement
Guest User

Untitled

a guest
Aug 20th, 2022
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/light.css">
  5.         <script src="https://kit.fontawesome.com/85948f73ba.js" crossorigin="anonymous"></script>
  6.  
  7.         <style>
  8.             .container {
  9.                 display: flex;
  10.                 align-items: center;
  11.             }
  12.             .container.space-between {  
  13.                 justify-content: space-between;
  14.             }
  15.             a {
  16.                 font-weight: bold;
  17.             }
  18.  
  19.             .myicon {
  20.                 vertical-align: middle;
  21.                 font-size: 30px;
  22.             }
  23.  
  24.             .title {
  25.                 font-weight: bold;
  26.                 font-size: 40px;
  27.             }
  28.         </style>
  29.     </head>
  30.  
  31.     <body>
  32.                
  33.                 <div class="container space-between">
  34.                     <span class="title">John Appleseed</span>
  35.                     <span style="padding-left: 150px;"></span>
  36.                     <a href="https://www.google.com"><span class="myicon fa-solid fa-file"></span></a>
  37.                     <a href="mailto:[email protected]" target="_blank" rel="noopener noreferrer"><span class="myicon fa-solid fa-at"></span></a>
  38.                     <a href="https://github.com/"><span class="myicon fa-brands fa-github"></span></a>
  39.                     <a href="https://www.linkedin.com"><span class="myicon fa-brands fa-linkedin-in"></span></a>
  40.                 </div>
  41.                
  42.     </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement