-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode-editor.html
27 lines (25 loc) · 940 Bytes
/
code-editor.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<title>Code Editor</title>
<link href="https://fonts.googleapis.com/css2?family=Silkscreen&family=Work+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<link rel="stylesheet" href="home.css">
</head>
<body>
<header class="header">
<div class="container">
<a href="index.html"><h1>Koded</h1></a>
<nav>
<ul>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#features">Features</a></li>
<li><a href="code-editor.html">Code-Online</a></li>
<li><a href="index.html#contact">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<iframe src="https://www.online-python.com/" style="width: 100%; height: 100vh;"></iframe>
</body>
</html>