-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 2.01 KB
/
index.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap"
rel="stylesheet"
/>
<script src="./js/script.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700&family=Varela+Round&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="./img/fevicon.png" />
<link rel="stylesheet" href="./style.css" />
<title>Online Compiler</title>
<script src="./js/index.js"></script>
</head>
<body>
<header>
<div class="head">
<div class="head-toggle">
<a href="#" id="c" class="" onclick="c()">C</a>
<a href="#" id="cplus" class="deactive" onclick="cplus()">C++</a>
<a href="#" id="python" class="deactive" onclick="python()">Python</a>
</div>
<div class="coders">
<a href="./about-us.html">AKA-Coders</a>
</div>
</div>
<div class="main-container">
<div class="main-function">
<div class="up-nav">
<p id="code_inp">Code in C</p>
<div>
<button>Save</button>
<button onclick="compile()">Run</button>
</div>
</div>
<textarea name="" id="textarea-input"></textarea>
</div>
<div class="output-function">
<div class="up-nav up-nav2">
<p>Output</p>
<div>
<button>Clear</button>
</div>
</div>
<textarea name="" id="textarea-output" ></textarea>
</div>
</div>
</header>
</body>
</html>