<!DOCTYPE html>
<html>
<head>
<title>Recipe Finder</title>
<style>
body {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin: 0;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
min-height: 100vh;
}
#recipeForm {
text-align: center;
background-color: #f0f0f0;
padding: 20px;
border-radius: 10px;
}
#ingredients {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 10px;
}
#results {
text-align: center;
margin-top: 20px;
}
h1 {
font-size: 36px;
align-items: center;
justify-content: center;
text-align: center;
}
h2 {
font-size: 24px;
}
</style>
</head>
HTML Code • 1 min read
Description
First bit of HTML code.