index.html Example File

webenginewidgets/spellchecker/data/index.html
<!DOCTYPE html>
<html lang="en">
   <head>
      <meta charset="utf-8">
      <title>Contact us</title>
      <link rel="stylesheet" type="text/css" href="style.css">
   </head>
   <body>
      <form class="form">
         <img class="logo" src="icon.svg" alt="qtwebengine">
         <div class="header">
            <h1>Contact us</h1>
            <h2>We are here to help</h2>
         </div>
         <label>
         <span>First Name:</span><input id="firstname" type="text" name="name" />
         </label>
         <label>
         <span>Last Name:</span><input id="lastName" type="text" name="name" />
         </label>
         <label>
         <span>Email Address:</span><input id="email" type="text" name="email" />
         </label>
         <label>
         <span>Subject:</span><input id="subject" type="text" name="subject" />
         </label>
         <label>
         <span>Message:</span><textarea id="feedback" name="feedback"></textarea>
         </label>
         <input type="submit" value="Send" />
      </form>
   </body>
</html>

© 2021 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.