Back to Shopify Liquid
Made in Usa
Shopify Liquid

Made in Usa

Drop this Shopify Liquid snippet into your theme to add the made in usa block. Copy the code below, paste it into your theme files, save and you're done.

47 lines · 1.1 KB
Shopify Liquid
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Made in USA Widget</title>
7 <style>
8 body.unique-body-7907 {
9 font-family: Arial, sans-serif;
10 display: flex;
11 justify-content: center;
12 align-items: center;
13 height: 100vh;
14 margin: 0;
15 background-color: #f9f9f9;
16 }
17
18 .usa-widget-7907 {
19 text-align: center;
20 }
21
22 .usa-text-7907 {
23 font-size: 14px;
24 color: #333333;
25 display: flex;
26 align-items: center;
27 justify-content: center;
28 }
29
30 .usa-text-7907 img {
31 width: 20px;
32 height: 20px;
33 margin-right: 8px;
34 }
35 </style>
36</head>
37<body class="unique-body-7907">
38
39 <div class="usa-widget-7907">
40 <div class="usa-text-7907">
41 <img src="https://www.svgrepo.com/show/313980/flag-usa-solid.svg" alt="Made in USA Icon">
42 Proudly Made in USA
43 </div>
44 </div>
45
46</body>
47</html>

Related snippets