<!DOCTYPE html> <html lang="de"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Course Website</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Arial, sans-serif; line-height: 1.6; } /* Navigation Bar */ .navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background-color: #f8f9fa; border-bottom: 1px solid #ddd; } .logo { font-size: 1.5rem; font-weight: bold; } .account-btn { padding: 0.5rem 1rem; border: 1px solid #ddd; border-radius: 20px; text-decoration: none; color: #000; } .iframe { border: none; height: 100vw; width: 100%; } </style> </head> <body> <nav class="navbar"> <div class="logo">LOGO</div> <div class="nav-dots"> <h1>HOME</h1> </div> <a href="#" class="account-btn">Account</a> </nav> <iframe src="test.html" class="iframe"></iframe> </body> </html>