Skip to content

Commit

Permalink
My order - HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
FROSTYLAN committed Aug 21, 2022
1 parent 02b2ee4 commit f45e4e1
Showing 1 changed file with 55 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;700&display=swap"
rel="stylesheet"
/>
<style>
:root {
--white: #fff;
--black: #000;
--very-light-pink: #c7c7c7;
--text-input-field: #f7f7f7;
--hospital-green: #acd9b2;
--sm: 14px;
--md: 16px;
--lg: 18px;
}
body {
margin: 0;
font-family: "Quicksand", sans-serif;
}
</style>
</head>
<body>
<div class="my-order">
<div class="my-order-container">
<div class="my-order-content">
<p>
<span>04.25.21</span>
<span>6 articles</span>
</p>
<p>$560.00</p>
</div>

<div class="shopping-cart">
<figure>
<img
src="https://images.pexels.com/photos/276517/pexels-photo-276517.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"
alt="bici"
/>
</figure>
<p>Bike</p>
<p>$30,00</p>
</div>
</div>
</div>
</body>
</html>

0 comments on commit f45e4e1

Please sign in to comment.