You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
1.9 KiB
HTML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html lang=eng>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<title>Ingredients</title>
<style>
.header {
padding: 10px 16px;
color: black;
}
h1 {
font-family: "Coconat";
font-size: 80px;
}
h2 {
font-family: "Coconat";
}
body {
height: 100%;
margin: 0;
background-repeat: no-repeat;
background-attachment: fixed;
background-color: black;
background-image: linear-gradient(0deg, black, white);
}
p {
font-family: "Montserrat Alternates";
}
* {
box-sizing: border-box;
}
.column {
float: left;
padding: 45px;
height: 200px;
}
.left {
width: 60%;
}
.right {
width: 40%;
}
.row:after {
content: "";
display: table;
clear: both;
}
.barcode {
width= 120px;
height= 50px;
}
</style>
</head>
<body>
<div class="header" id="myHeader">
<h1 align="center">THE INGREDIENTS<h1>
</div>
<div class="row">
<div class="column left">
<h2>
☾ POTATO [ <img src="" alt="barcode_weaver" width="120" height="50"> ]
</h2>
<h2>
⚪ SWEET POTATO [ <img src="" alt="barcode_weaver" width="120" height="50"> ]
</h2>
</div>
<div class="column right">
<p>
☾ etcetera = ['et cetera', ' etc ', ' etc.', '...', '[...]', '[. ...]', 'and-so-on', 'and-so-forth', 'and others', 'et al.', 'and all the rest', 'and on and on', 'along with others, blablabla, blabla, and much more]
</p>
<p>
⚪ *My dear lovely dad that I love with all my heart
</p>
</div>
</div>
</body>
</html>