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

gitignore & iframes

parent a24440c4
No related branches found
No related tags found
No related merge requests found
# Default ignored files
/shelf/
/workspace.xml
.idea
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
<!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>
\ No newline at end of file
......@@ -109,11 +109,6 @@
</style>
</head>
<body>
<nav class="navbar">
<div class="logo">LOGO</div>
<h1>HOME</h1>
<a href="#" class="account-btn">Account</a>
</nav>
<main class="main-content">
<div class="left-column">
......
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