HTML文件中的RichTextbox



我想在我的form.html文件中放一个richtextboc,因为我需要在上面写带有样式和"
"的代码,我该怎么做?非常感谢。我试着下载一些我在网上找到的剧本,作为剪辑师,但我不知道如何让它发挥作用。。

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <link rel="stylesheet" type="text/css" href="CSS/stile.css">
    <title>tabella</title>
</head>
<body>
    <br>
    <div class="titlebarpesiti" style="background-color:#22AEB9">
    CONTROLLO SITO
    </div>
    <br>
    <br>
    <div class="titlebarpesiti">
        <form id="richiesta dati" name="richiesta dati" method="POST" action="PHP/Scrittura_dati.php">
            <label for="festa">Festa: &nbsp;</label><input type="text" name="festa"> <br> <br>
            <label for="data">Data: &nbsp;</label><input type="text" name="data"><br> <br> 
            <label for="luogo">Luogo: &nbsp;</label><input type="text" name="luogo"><br> <br>
            <label for="prezzo">Prezzo: &nbsp;</label><input type="text" name="prezzo"><br> <br>
            <label for="bus">Bus: &nbsp;</label><input type="text" name="bus"><br> <br>
            <label for="organizzatori">Organizzatori: &nbsp;</label><input type="text" name="organizzatore"><br> <br>
            <label for="dettagli">Altre info: &nbsp;</label><input type="text" name="dettagli"><br> <br>
            <input type="submit" value="Invia Dati"><br> </br>
        </form>
    </div>
    <div class="titlebarpesiti" style="background-color:#FF0004">
    ELIMINARE DATI
        <form id="eliminare dati" name="eliminare dati" method="POST" action="PHP/eliminaredati.php">
            <input type="text" name="ideliminare">
            <input type="submit" value="INVIO"><br> </br>
        </form>
    </div>
    <br>
    <br>
</body>
</html>

使用TinyMCE,http://www.tinymce.com/

它有很多语言。

最新更新