Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Literature Review Importance</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f5f5f5; } .container { position: relative; width: 500px; height: 500px; } .center-circle { width: 150px; height: 150px; background-color: #ffcc00; border-radius: 50%; display: flex; justify-content: center; align-items: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; font-weight: bold; } .circle { width: 120px; height: 120px; background-color: #4caf50; border-radius: 50%; display: flex; justify-content: center; align-items: center; position: absolute; text-align: center; font-size: 12px; color: white; padding: 10px; } .circle:nth-child(2) { top: 10px; left: 50%; transform: translateX(-50%); } .circle:nth-child(3) { top: 50%; left: 10px; transform: translateY(-50%); } .circle:nth-child(4) { top: 50%; right: 10px; transform: translateY(-50%); } .circle:nth-child(5) { bottom: 10px; left: 50%; transform: translateX(-50%); } </style> </head> <body> <div class="container"> <div class="center-circle">Why is it important to review literature related to our research topic?</div> <div class="circle">Helps identify gaps in existing research</div> <div class="circle">Provides a theoretical foundation</div> <div class="circle">Prevents duplication of work</div> <div class="circle">Offers insight into methodologies</div> </div> </body> </html>
Leave a Comment