I have an email through Microsoft for business. I created a contact us page with an action page but I tried multiple times to place the code in the correct way but its not sending the email nothing i don't even get an email, i set everything up correctly. I posted screen shots and code, please help.
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="utf-8">
<title>Contact Us</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<style>
<style>
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}
.desc {
padding: 15px;
text-align: center;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
li a:hover {
background-color: #FF0000;
}
* {
box-sizing: border-box;
}
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
label {
padding: 12px 12px 12px 0;
display: inline-block;
}
input[type=submit] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
}
input[type=submit]:hover {
background-color: #45a049;
}
.container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
.col-25 {
float: left;
width: 25%;
margin-top: 6px;
}
.col-75 {
float: left;
width: 75%;
margin-top: 6px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.col-25, .col-75, input[type=submit] {
width: 100%;
margin-top: 0;
}
}
body {
background-image: url("img/bg-1.jpg");
}
</style>
</head>
<body>
<div id="main">
<div id="logo"><img src="img/mirakelbanner.png" height="200" width="1140"></div>
<div id="navigation">
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Media</a>
<div class="dropdown-content">
<a href="Podcast.html">Podcast</a>
</div>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<div><label >Contact Us</label></div>
<div class="container">
<form action = "C:/Users/markm/OneDrive/Desktop/assignment/Action.html">
<div class="row">
<div class="col-25">
<label for="fname">Full Name</label>
</div>
<div class="col-75">
<input type="text" id="fname" name="fulltname" placeholder="Your name..">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="lname">Email</label>
</div>
<div class="col-75">
<input type="text" id="email" name="email" placeholder="Your Email..">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="country">Country</label>
</div>
<div class="col-75">
<select id="country" name="country">
<option value="australia">
Australia
</option>
<option value="canada">
Canada
</option>
<option value="usa">
USA
</option>
</select>
</div>
</div>
<div class="row">
<div class="col-25">
<label for="subject">Subject</label>
</div>
<div class="col-75">
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
</div>
</div>
<div class="row">
<input type="submit" value="Send"></a>
</div>
</form>
</div>
<div id="footer">Copyright 2023, Mirakel Entertainment, LLC,</div>
</div>
</html>
</body>
</html>

