Setting up contact page with working contact form

This commit is contained in:
Ray 2024-07-15 00:37:53 +10:00
parent dcc065226c
commit c2a03f8950
1 changed files with 29 additions and 1 deletions

View File

@ -11,4 +11,32 @@
font-family: Arial, Helvetica, sans-serif; font-family: Arial, Helvetica, sans-serif;
} }
</style> </style>
</head> </head>
<body>
<div class="navbar">
<a href="index.html">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
<a href="#" class="right">Projects</a>
</div>
<div class="header">
<h1>reiyua</h1>
<p>Contact me below or use the form below to send me a message:</p>
<a href="mailto:rei@reiyua.lol">rei@reiyua.lol</a>
</p>
</div>
<div class="form-container">
<form action="http://formspree.io/rei@reiyua.lol">
<label for="_replyto">Email:</label>
<input type="email" name="_replyto">
<label for="body">Message:</label>
<textarea name="body"></textarea>
<input type="submit" value="Send">
</form>
</div>
</body>
</html>