<!DOCTYPE html>
<html>
<head>
<title>Quick Quotes</title>
<link rel="stylesheet" type="text/css" href="/css/styles.css">
</head>
<body>
<div class="container">
<h2>Quick Quotes</h2>
<form id="quoteForm">
<label for="User">Name:</label>
<input type="text" id="name" name="User" placeholder="Enter your name">
<label for="Quote">Quote:</label>
<textarea id="quote" name="Quote" placeholder="Enter your quote"></textarea>
<button type="button" onclick="submitForm()">Submit</button>
</form>
<div id="quotesContainer">
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Quick Quotes</title>
<link rel="stylesheet" type="text/css" href="/css/styles.css">
</head>
<body>
<div class="container">
<h2>Quick Quotes</h2>
<form id="quoteForm">
<label for="User">Name:</label>
<input type="text" id="name" name="User" placeholder="Enter your name">
<label for="Quote">Quote:</label>
<textarea id="quote" name="Quote" placeholder="Enter your quote"></textarea>
<button type="button" onclick="submitForm()">Submit</button>
</form>
<div id="quotesContainer">
</div>
</div>
</body>
</html>