linum / frontend /index.html
Rémy
Add Linux Practice Tool files
f716e02
raw
history blame
507 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Linux Practice Tool</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="terminal">
<div id="output"></div>
<div id="input-line">
<span id="prompt">$</span>
<input type="text" id="command-input" autofocus>
</div>
</div>
<script src="script.js"></script>
</body>
</html>