Creative Design - VexaX
Run Code
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Creative Design</title> <style> body { margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; background: linear-gradient(135deg, #e63946, #f1faee); font-family: 'Courier New', monospace; } .article-container { position: relative; width: 90%; max-width: 800px; padding: 2rem; background: rgba(255, 255, 255, 0.2); border-radius: 15px; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.4); animation: zoomIn 1s ease-in-out; } .article-header { display: flex; align-items: center; margin-bottom: 1rem; } .article-header img { border-radius: 50%; width: 60px; height: 60px; margin-right: 1rem; } .article-header h1 { font-size: 2.5rem; color: #fff; } .article-content { color: #fff; } .article-content p { line-height: 1.6; margin: 0.7rem 0; } .article-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; } .article-footer .tags { display: flex; gap: 0.5rem; } .article-footer .tags span { background: rgba(255, 255, 255, 0.3); padding: 0.4rem 0.8rem; border-radius: 15px; font-size: 0.9rem; } .article-footer .social-icons { display: flex; gap: 0.5rem; } .article-footer .social-icons a { color: #fff; font-size: 1.5rem; transition: transform 0.3s; } .article-footer .social-icons a:hover { transform: scale(1.1); } @keyframes zoomIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } } </style> </head> <body> <div class="article-container"> <div class="article-header"> <img src="https://via.placeholder.com/60" alt="Author"> <h1>Creative Design</h1> </div> <div class="article-content"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> <p>Cras ultricies ligula sed magna dictum porta. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi.</p> </div> <div class="article-footer"> <div class="tags"> <span>#design</span> <span>#creativity</span> <span>#art</span> </div> <div class="social-icons"> <a href="#"><i class="fab fa-facebook-f"></i></a> <a href="#"><i class="fab fa-twitter"></i></a> <a href="#"><i class="fab fa-linkedin-in"></i></a> </div> </div> </div> <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script> </body> </html>