Untitled

Prompt:

style it using bootstrap css templates: <!DOCTYPE html>

<html>

<head>

<title>My Contact Form</title>

</head>

<body>

<h1>Contact Us</h1>

<form>

<label for="name">Name:</label>

<input type="text" id="name" name="name"><br><br>

<label for="subject">Subject:</label>

<input type="text" id="subject" name="subject"><br><br>

<label for="request">Request:</label>

<textarea id="request" name="request" rows="5" cols="30"></textarea><br><br>

<input type="submit" value="Submit">

</form>

</body>