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

72 lines
2.3 KiB
HTML
Raw Normal View History

2013-09-24 00:07:24 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
2021-10-22 22:26:29 +02:00
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2022-06-15 15:05:40 +02:00
<title>Free Country Flags in SVG | flag-icons</title>
2021-10-23 09:13:23 +02:00
<!-- Bootstrap -->
2021-10-22 22:26:29 +02:00
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
2021-10-23 09:13:23 +02:00
<!-- Font Awesome -->
2021-10-22 22:26:29 +02:00
<link
rel="stylesheet"
2021-10-22 22:35:58 +02:00
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
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" />
2015-12-23 23:45:33 +01:00
2022-06-14 10:39:12 +02:00
<!-- Global site tag (gtag.js) - Google Analytics -->
2021-10-23 09:13:23 +02:00
<script
async
2022-06-14 10:39:12 +02:00
src="https://www.googletagmanager.com/gtag/js?id=G-4P6P2EW03Y"
2021-10-23 09:13:23 +02:00
></script>
2021-10-22 22:53:27 +02:00
<script>
2021-10-23 09:13:23 +02:00
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
2022-06-14 10:39:12 +02:00
gtag('config', 'G-4P6P2EW03Y');
2021-10-22 22:53:27 +02:00
</script>
2021-10-22 22:26:29 +02:00
</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 15:05:17 +02:00
A curated free 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">
All flags are in <strong>1x1</strong> and <strong>4x3</strong> formats
only.
</p>
2021-12-20 14:36:40 +01:00
<pre class="install">yarn add flag-icons</pre>
2021-10-23 09:09:43 +02:00
<p>For more instructions check out GitHub.</p>
2021-10-23 09:13:23 +02:00
<a class="btn btn-light" href="https://github.com/lipis/flag-icons"
2021-10-22 22:35:58 +02:00
><i class="fab fa-github"></i> View on GitHub</a
>
<a
2021-10-23 09:09:43 +02:00
class="btn btn-light"
href="https://github.com/lipis/flag-icons/archive/main.zip"
2021-10-23 20:21:32 +02:00
><i class="fas fa-download"></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">
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>