Skip to content
Snippets Groups Projects
Commit d84601ea authored by HerrWaechter's avatar HerrWaechter
Browse files

doch keine iframes

parent 0549ae64
No related branches found
No related tags found
No related merge requests found
......@@ -109,7 +109,13 @@
</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>
<main class="main-content">
<div class="left-column">
<div class="box">
......
<!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="Homepage.html" class="iframe"></iframe>
</body>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment