I am making a new web page, and has been a while since I written any code. my issue is that I am trying to use a picture as part of the page and have also as my email link. can someone please check my code and tell me what I am doing wrong, the picture works but it doesnt do anything when I load the site to my host. the back ground picture works fine but the slot is the one I am having issues with here is what I have:
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="flavicon icon" href="http://carymcclure.com/favicon.ico" />
<style>
body {
background-image: url(../img/background.gif);
background-repeat: no-repeat;
}
</style>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Welcome to Cary McClures' Portfolio</title>
<!-- Bootstrap -->
<link href="../css/bootstrap-4.4.1.css" rel="stylesheet">
</head>
<body background="../img/background.gif" class="embed-responsive">
<a href: mailto:chef@carymcclure.com>
<img style="float:right; margin-right:150px; margin-top:350px"
<img src="../img/slot.gif" width="216" height="89" alt="email"/></a>
</body>
</html>
also having issue with my code for the flavicon - doesnt load.. any help would be greatly appreciated.