-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (79 loc) · 3.71 KB
/
index.html
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
89
90
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dima L. Html+CSS Course exercises</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/fontawesome.min.css" integrity="sha512-SgaqKKxJDQ/tAUAAXzvxZz33rmn7leYDYfBP+YoMRSENhf3zJyx3SBASt/OfeQwBHA1nxMis7mM3EV/oYT6Fdw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/brands.min.css" integrity="sha512-9YHSK59/rjvhtDcY/b+4rdnl0V4LPDWdkKceBl8ZLF5TB6745ml1AfluEU6dFWqwDw9lPvnauxFgpKvJqp7jiQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="apple-touch-icon" sizes="180x180" href="/html-css/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/html-css/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/html-css/favicon-16x16.png">
<link rel="manifest" href="/html-css/site.webmanifest">
</head>
<body>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2BRPRR9Q9Y"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2BRPRR9Q9Y');
</script>
<div class="blog-main-container mx-auto py-3">
<div class="content">
<header class="d-flex justify-content-center pb-3">
<a href="https://dimal.dev/" target="_blank" class="d-flex align-items-center text-dark text-decoration-none fs-3">
<span>DimaL</span>
<span class="">🧑💻</span>
</a>
</header>
<div class="d-flex justify-content-center">
<main>
<h1>
HTML and CSS Course
</h1>
<section class="fs-3 mt-4">
<h2>Assets</h2>
<p>
<a href="reddit-webdev/index.html">Reddit Clone/Webdev</a>
</p>
<p>
<a href="resources-reddit.html">Reddit Clone/Webdev. Images</a>
</p>
<hr>
<p>
<a href="reddit-hades/index.html">Reddit Clone/Hades. As practice exercise</a>
</p>
<hr>
<p>
<a href="sidebar.html">Tutorial 06 - Sidebar</a>
</p>
</section>
</main>
</div>
</div>
<footer class="pt-5 text-muted footer text-center">
Dima L © 2025
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
<style>
.blog-main-container {
max-width: 800px;
display: flex;
flex-direction: column;
min-height: 100vh;
justify-content: space-between;
}
</style>
<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=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Vollkorn:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
</body>
</html>