HTML to JSX
Convert HTML to React-compatible JSX — classes, styles, self-closing tags.
- Runs in your browser
<div className="container">
<label htmlFor="name">Name</label>
<input type="text" id="name" className="field" / />
<br />
<img src="logo.png" alt="Logo" />
<div style={{ color: "red", fontSize: 14 }}>Hello</div>
</div>Was this tool useful?