The below code is connected to a contact form. On submit, you receive one of two messages. How can I add span and h1 styles to these messages?
<?php
if($_GET['message'] == "thanks") {
$message = "Message received! Thank you for contacting us.";
} else {
if($_GET['message'] == "wrongcaptcha")
$message = "We are having problems processing your message. The captcha code you entered was incorrect.";
}
?>
<div id="thankyoubox">
<p><?php echo $message?><p>
</div><!--end of thankyoubox-->
Thanks!
Either of these two ways will work:
or