-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcert-html-css.html
More file actions
86 lines (72 loc) · 4.05 KB
/
cert-html-css.html
File metadata and controls
86 lines (72 loc) · 4.05 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#F5F5F7">
<title>HTML & CSS Course | Chris Jemming</title>
<link rel="stylesheet" href="css/main.css">
<link rel="icon" type="image/png" href="assets/favicon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="js/components.js" defer></script>
<script src="js/main.js" defer></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
document.body.classList.add('preload');
setTimeout(() => { document.body.classList.remove('preload'); }, 200);
});
const savedTheme = localStorage.getItem('theme');
if (savedTheme) { document.documentElement.setAttribute('data-theme', savedTheme); }
</script>
</head>
<body class="preload">
<div class="background-orbs">
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
</div>
<app-navbar></app-navbar>
<main class="container">
<div class="back-nav fade-in">
<a href="certifications.html" class="back-link"><i class="fa-solid fa-arrow-left"></i> Back to Overview</a>
</div>
<section class="fade-in" style="margin-bottom: 40px;">
<h1 style="font-size: 2.5rem; margin-bottom: 10px;">HTML & CSS</h1>
<div style="display: flex; gap: 15px; align-items: center;">
<span class="date-pill" style="font-size: 0.9rem;">Web Development</span>
<span style="color: var(--text-secondary);">Jannis Seeman (Udemy)</span>
</div>
</section>
<div class="bento-grid">
<div class="glass-card span-2 fade-in" style="padding: 24px; display: flex; flex-direction: column;">
<h3><i class="fa-solid fa-code"></i> Course content</h3>
<p style="margin-bottom: 20px; color: var(--text-main);"><strong>"Baue Webseiten mit HTML5 & CSS3: Vom Anfänger zum Profi!"</strong></p>
<ul class="check-grid">
<li><i class="fa-solid fa-check"></i> Implement a real-life project</li>
<li><i class="fa-solid fa-check"></i> Start your career as a web developer</li>
<li><i class="fa-solid fa-check"></i> Develop websites independently in HTML5 + CSS3</li>
<li><i class="fa-solid fa-check"></i> Learn everything in a structured way and from a single source</li>
<li><i class="fa-solid fa-check"></i> Implement cool features with jQuery</li>
<li><i class="fa-solid fa-check"></i> Understand the interaction between PHP, JS, HTML, and CSS</li>
</ul>
<a href="https://www.udemy.com/course/html-und-css/" target="_blank" class="btn-action" style="margin-top: auto; align-self: flex-start;">
Course on Udemy <i class="fa-solid fa-external-link-alt"></i>
</a>
</div>
<div class="glass-card fade-in" style="padding: 0; display: flex; flex-direction: column;">
<div style="height: 200px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); display: flex; align-items: center; justify-content: center; color: white; font-size: 4rem;">
<i class="fa-solid fa-award"></i>
</div>
<div style="padding: 24px; flex-grow: 1; display: flex; flex-direction: column;">
<h3 style="margin-bottom: 5px;">Certificate of completion</h3>
<p style="color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6;">
Covering the fundamentals of frontend engineering, layout design, and web interactivity
</p>
<a href="https://www.udemy.com/certificate/UC-530cd2f9-2ae3-4c6a-988b-8b7c22d212d0/" target="_blank" class="btn-action" style="margin-top: auto;">Open certificate<i class="fa-solid fa-file-pdf"></i></a>
</div>
</div>
</div>
</main>
<app-footer></app-footer>
<script src="js/main.js"></script>
</body>
</html>