tachytelic

HTML Template for Birthday Greeting in Power Automate Flow

Jul 4th, 2021 (edited)
1,033
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. body {
  6.  margin: 0;
  7.   padding: 16px;
  8.   background-color: #512DA8;
  9. }
  10.  
  11. .birthday-card {
  12.   margin: 40px auto;
  13.   padding: 16px;
  14.   max-width: 400px;
  15.   background-color: white;
  16.   text-align: center;
  17.   box-shadow: 0 24px 40px -8px #311B92;
  18. }
  19. .birthday-card img {
  20.   width: 100%;
  21. }
  22.  
  23. .source-link {
  24.   text-align: center;
  25.   color: #311B92;
  26.   text-decoration: underline;
  27. }
  28.  
  29. .source-link a {
  30.   color: #311B92;
  31.   text-decoration: none;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div class="birthday-card">
  37.    
  38.     <img src="https://image.freepik.com/free-vector/surprise-theme-happy-birthday-card-illustration_1344-199.jpg"  alt="Birthday image">
  39.     <h1>Happy Birthday Paul.</h1>
  40.    
  41.     <h3>Hope you are having a great day.</h3>
  42.    
  43.   </div>
  44.   <h6 class="source-link"><a href="https://www.freepik.com/free-photos-vectors/background"</a>Background vector created by Freepik</h6>
  45.  
  46. </body>
  47. </html>
Add Comment
Please, Sign In to add comment