Ich habe ein einfaches Problem. Ich habe eine HTML-Datei erstellt und wenn ich versuche, die HTML-Datei in meinem Outlook einzubetten, um es an meinen Client zu senden. Die Elemente sind nicht sichtbar. Warum? Was vermisse ich. Bitte führen. Unten ist mein htmlHTML-Element beim Einbetten von Form in E-Mail nicht sichtbar?
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css"> body{background-color: #FFFFFF;font-family: arial;margin: 0;} </style>
<title>TEst</title>
</head>
<body>
<table height="100px;" width="72px;" border="1" align="center" cellpadding="0" cellspacing="0" style="font-family:Verdana, Geneva, sans-serif;">
<tr>
<section id="form">
<form id="gform" method="post" action="someAction">
<div id="left-col-forms" style="float: left; width: 330px; font-family: 'Open Sans', sans-serif;font-size:12px;">
<fieldset style="width:700px;">
<label for="name"><b>Name:</b> </label>
<input id="name" name="name" placeholder="Please Enter Your Name" style="width:400px;" />
</fieldset>
<fieldset style="width:700px;">
<label for="Phone"><b>Phone:</b> </label>
<input id="phone" name="phone" placeholder="" />
</fieldset>
<button style="float: left;">Submit</button>
</div>
</form>
</section>
</div></td>
</tr>
<tr>
<td> </td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
Sie haben einige ziemlich offensichtliche Fehler, die https://validator.w3.org/nu/ auftreten würden. – Quentin