-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e04a67a
commit c0b6909
Showing
1 changed file
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ | |
<title>Contact Form</title> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> | ||
</head> | ||
<body class="bg-gray-200"> | ||
<div class="container mx-auto"> | ||
<body class="bg-gray-200 flex items-center justify-center h-screen"> | ||
<div class="container mx-auto "> | ||
<div class="max-w-md mx-auto bg-white p-5 rounded shadow-md"> | ||
<h2 class="text-2xl font-semibold mb-5 ">Contact Form</h2> | ||
<form> | ||
|
@@ -27,9 +27,8 @@ <h2 class="text-2xl font-semibold mb-5 ">Contact Form</h2> | |
<label for="message" class="block text-gray-700 text-sm font-bold mb-2">Message</label> | ||
<textarea id="message" name="message" class="w-full py-2 px-3 border border-gray-300 rounded" rows="4" placeholder="Your message here" required></textarea> | ||
</div> | ||
<button type="submit" class="bg-blue-500 text-white py-2 px-4 rounded hover:bg-blue-600 focus:outline-none focus:ring focus:border-blue-300">Submit</button> | ||
</form> | ||
<button type="submit" class="bg-blue-500 text-white py-2 px-4 rounded hover:bg-blue-600 focus:outline-none focus:ring focus:border-blue-300 w-full sm:w-auto">Submit</button> </form> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
</html> |