-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimages.html
More file actions
88 lines (68 loc) · 3.3 KB
/
images.html
File metadata and controls
88 lines (68 loc) · 3.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!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">
<meta name="description" content="">
<meta name="author" content="junky">
<title>junky.github.io - Images</title>
<!-- Bootstrap core CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Custom styles for this template -->
<style>
body {
padding-top: 75px;
}
.starter-template {
padding: 40px 15px;
text-align: center;
}
.odometer {
font-size: 100px;
padding-bottom: 50px;
}
</style>
<!-- Odometr includes -->
<link rel="stylesheet" href="https://github.hubspot.com/odometer/themes/odometer-theme-car.css">
<script src="https://github.hubspot.com/odometer/odometer.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="#">junky.github.io</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item"><a class="nav-link" href="/">Home</a></li>
<li class="nav-item"><a class="nav-link" href="/noingest.html">No Ingest</a></li>
<li class="nav-item"><a class="nav-link" href="/xhr-demo.html">XHR</a></li>
<li class="nav-item"><a class="nav-link" href="/dates.html">Dates</a></li>
<li class="nav-item"><a class="nav-link" href="/mt.html">MT</a></li>
<li class="nav-item"><a class="nav-link" href="/markdown.html">Markdown</a></li>
<li class="nav-item"><a class="nav-link" href="/dcs-test.html">DCS Test</a></li>
<li class="nav-item"><a class="nav-link" href="/swaps.html">Swaps</a></li>
<li class="nav-item"><a class="nav-link" href="/vue-attributes.html">Vue Attributes</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<img src="/images/en/flag.png" alt="US Flag" style="width:256px;height:256px;">
<img src="/assests/images/en/flag.png" alt="US Flag. Assets" style="width:256px;height:256px;">
<br/>
<br/>
<img src="/cw/flag.png" alt="/cw/" style="width:256px;height:256px;">
<img src="/cw/en_us/flag.png" alt="/cw/en_us/" style="width:256px;height:256px;">
</div><!-- /.container -->
<!-- Bootstrap core JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>