Kingston_Pendrive/Suli/11.b/Webprogramozás/tothadam_JavascriptNotes/index.html
2024-11-19 19:04:02 +01:00

26 lines
943 B
HTML

<!DOCTYPE html>
<html lang="hu">
<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">
<title>Jegyzettömb</title>
<script src="script.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Jegyzettömb</h1>
<div id="notes"></div>
<div id="addnotes">
<p>
<label for="inphead">Add meg a címet: </label><input type="text" id="inphead" name="inphead"><br>
<label for="inptext">Add meg a szöveget: </label><br><textarea name="inptext" id="inptext" rows="5" cols="50"></textarea><br>
<label for="notecolor">Jegyzet színe: </label><br><input type="color" id="notecolor" name="notecolor" value="#FF00FF"><br>
<button id="addbtn">Jegyzet hozzáadása</button>
</p>
</div>
<div id="msg">
</div>
</body>
</html>