link style.css

This commit is contained in:
Mário Panenko 2024-10-21 09:51:56 +00:00
parent 46bde64dc8
commit 6a344c4d89

View File

@ -1,36 +1,38 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="sk"> <html lang="sk">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Jednoduchý Prekladač</title> <title>Jednoduchý Prekladač</title>
<link rel="stylesheet" href="progress_bar.css"> <link rel="stylesheet" href="style_dark.css">
<style> <!-- <link rel="stylesheet" href="style_light.css"> -->
<link rel="stylesheet" href="progress_bar.css">
</style> <style>
</head>
<body> </style>
</head>
<h1>Jednoduchý Prekladač s Rozpoznávaním Reči</h1> <body>
<div class="container"> <h1>Jednoduchý Prekladač s Rozpoznávaním Reči</h1>
<!-- Textové pole na zadanie textu -->
<textarea id="inputText" placeholder="Enter text"></textarea> <div class="container">
<!-- Textové pole na zadanie textu -->
<!-- Textové pole pre preklad --> <textarea id="inputText" placeholder="Enter text"></textarea>
<textarea id="translatedText" placeholder="Translation"></textarea>
</div> <!-- Textové pole pre preklad -->
<textarea id="translatedText" placeholder="Translation"></textarea>
<!-- Tlačidlo pre mikrofón --> </div>
<br>
<button id="startBtn">🎤</button> <!-- Tlačidlo pre mikrofón -->
<div id="timerDisplay"></div> <br>
<p id="statusText"></p> <button id="startBtn">🎤</button>
<div id="timerDisplay"></div>
<!-- Pripojenie skriptov --> <p id="statusText"></p>
<script src="kontrola_api.js"></script>
<script src="speech_recognition.js"></script> <!-- Pripojenie skriptov -->
<script src="kontrola_api.js"></script>
</body> <script src="speech_recognition.js"></script>
</body>
</html> </html>