-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (87 loc) · 2.59 KB
/
index.html
File metadata and controls
92 lines (87 loc) · 2.59 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="module" src="src/main.ts"></script>
<script type="module" src="src/compiler"></script>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css"
/>
<link
rel="icon"
href="https://avatars.githubusercontent.com/u/86915746?v=4"
/>
<title>RadonCoding</title>
</head>
<body>
<main>
<section id="portfolio">
<img
class="portfolio__profile"
src="https://avatars.githubusercontent.com/u/86915746?v=4"
alt="Profile"
/>
<div class="portfolio__details">
<h1 class="portfolio__title">RadonCoding</h1>
<pre class="portfolio__comment">
/**
* - Full-stack developer
* - Reverse engineer
*
* - Languages I use often:
* C/C++, C#, Rust, Java,
* TypeScript, Python, Go
*
*/</pre
>
</div>
<nav class="portfolio__contacts">
<a
class="portfolio__contact"
href="https://github.com/RadonCoding"
data-tooltip="Opening GitHub"
aria-label="Open GitHub"
>
<i class="bi bi-github"></i>
</a>
<a
class="portfolio__contact portfolio__contact--copy"
data-copy="radonreborn"
data-tooltip="Copied Username"
aria-label="Copy Username"
>
<i class="bi bi-discord"></i>
</a>
</nav>
</section>
<section id="workspace">
<div class="compiler">
<header class="compiler__header">
<span class="compiler__title">Compiler</span>
<button id="compile-button" aria-label="Compile">
<i class="bi bi-gear-fill"></i>
</button>
</header>
<div id="error-tooltip"></div>
<pre
id="compiler-input"
contenteditable="true"
spellcheck="false"
></pre>
<div id="compiler-output" class="compiler__output">
<div class="compiler__output-header">
<span class="compiler__output-label">Output</span>
<button id="toggle-output" aria-label="Toggle Output">
<i class="bi bi-chevron-down"></i>
</button>
</div>
<div id="compiler-console"></div>
</div>
</div>
</section>
</main>
</body>
</html>