0
0
mirror of https://github.com/lipis/flag-icons.git synced 2024-11-21 18:38:57 +01:00
flags/index.html

87 lines
2.7 KiB
HTML
Raw Permalink Normal View History

<!doctype html>
2013-09-24 00:07:24 +02:00
<html lang="en">
<head>
2023-05-31 21:05:11 +02:00
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-9LZGY0J38Z"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-9LZGY0J38Z");
</script>
2021-10-22 22:26:29 +02:00
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>flag-icons: Free Country Flags in SVG</title>
2023-08-15 18:17:36 +02:00
<!-- Open Graph -->
2023-08-15 18:20:26 +02:00
<meta property="og:title" content="flag-icons: Free Country Flags in SVG" />
2023-08-15 18:17:36 +02:00
<meta property="og:type" content="website" />
<meta property="og:url" content="https://flagicons.lipis.dev" />
<meta
property="og:description"
content="A curated collection of all country flags in SVG"
/>
<meta
property="og:image"
content="https://flagicons.lipis.dev/assets/og.png"
/>
<link rel="canonical" href="https://flagicons.lipis.dev" />
2023-08-23 00:52:56 +02:00
<link rel="icon" href="/favicon.ico" />
2023-08-15 18:17:36 +02:00
2021-10-23 09:13:23 +02:00
<!-- Bootstrap -->
2021-10-22 22:26:29 +02:00
<link
2023-08-17 00:51:41 +02:00
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
2021-10-22 22:26:29 +02:00
rel="stylesheet"
crossorigin="anonymous"
/>
2023-08-17 00:51:41 +02:00
<!-- Bootstrap Icons -->
2021-10-22 22:26:29 +02:00
<link
rel="stylesheet"
2023-08-17 00:51:41 +02:00
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css"
2021-10-22 22:26:29 +02:00
/>
2021-10-23 09:13:23 +02:00
<!-- Docs -->
2021-10-22 22:26:29 +02:00
<link href="./assets/docs.css" rel="stylesheet" />
</head>
2013-09-24 00:07:24 +02:00
<body>
2021-10-22 22:26:29 +02:00
<div class="header">
<div class="container-md">
2022-06-15 15:05:17 +02:00
<h1>Free Country Flags in SVG</h1>
2021-10-23 09:09:43 +02:00
<p class="lead">
2022-06-15 16:30:36 +02:00
A curated collection of all country flags in SVG — plus the CSS for
2021-10-27 14:08:33 +02:00
easier integration.
2021-10-22 22:35:58 +02:00
</p>
<p class="lead">
2022-06-16 08:41:59 +02:00
All flags are in <strong>4x3</strong> and <strong>1x1</strong> formats
only.
</p>
2021-12-20 14:36:40 +01:00
<pre class="install">yarn add flag-icons</pre>
2022-06-15 16:30:36 +02:00
<p>For more instructions check out on GitHub.</p>
2023-08-17 00:51:41 +02:00
<a class="btn btn-light me-2" href="https://github.com/lipis/flag-icons"
><i class="bi bi-github"></i> View on GitHub</a
2021-10-22 22:35:58 +02:00
>
<a
2021-10-23 09:09:43 +02:00
class="btn btn-light"
href="https://github.com/lipis/flag-icons/archive/main.zip"
2023-08-17 00:51:41 +02:00
><i class="bi bi-cloud-arrow-down-fill"></i> Download Flags</a
2021-10-22 22:35:58 +02:00
>
2013-09-24 00:07:24 +02:00
</div>
2013-09-24 17:13:35 +02:00
</div>
2021-10-22 22:26:29 +02:00
<div class="container-md">
<div class="switch">
<a id="click-4x3" class="hide" href="">4x3</a>
<a id="click-1x1" href="">1x1</a>
</div>
2021-10-23 11:43:30 +02:00
<h2>ISO 3166-1-alpha-2 Flags</h2>
<div id="iso-flags" class="row"></div>
<h2>Other Flags</h2>
<div id="non-iso-flags" class="row"></div>
2013-09-24 00:07:24 +02:00
</div>
2013-09-27 00:40:54 +02:00
<script src="./assets/docs.js"></script>
2013-09-24 00:07:24 +02:00
</body>
</html>