forked from PriyaGhosal/SkillWise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uiux.html
92 lines (82 loc) · 3.2 KB
/
uiux.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
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UI/UX Design Courses</title>
<link rel="stylesheet" href="assets/css/uiux.css">
</head>
<body>
<header>
<h1>UI/UX Design Courses</h1>
</header>
<ul class="course-list">
<li class="card category-card">
<div class="card-icon">
<img src="./assets/images/img1.jpg" width="72" height="72" alt="Course 1 icon">
</div>
<div>
<h3 class="title-lg">Intro to UI/UX Design</h3>
<p class="title-sm">Beginner-friendly introduction to the basics of UI/UX.</p>
<a href="#" class="buy-now-btn">Buy Now</a>
</div>
<a href="#" class="layer-link" aria-label="Intro to UI/UX Design"></a>
</li>
<li class="card category-card">
<div class="card-icon">
<img src="./assets/images/img2.jpg" width="72" height="72" alt="Course 2 icon">
</div>
<div>
<h3 class="title-lg">Advanced Prototyping Techniques</h3>
<p class="title-sm">Master advanced prototyping for smooth UI/UX transitions.</p>
<a href="#" class="buy-now-btn">Buy Now</a>
</div>
<a href="#" class="layer-link" aria-label="Advanced Prototyping Techniques"></a>
</li>
<li class="card category-card">
<div class="card-icon">
<img src="./assets/images/img3.jpg" width="72" height="72" alt="Course 3 icon">
</div>
<div>
<h3 class="title-lg">User Research Fundamentals</h3>
<p class="title-sm">Understand your users and their needs to design better experiences.</p>
<a href="#" class="buy-now-btn">Buy Now</a>
</div>
<a href="#" class="layer-link" aria-label="User Research Fundamentals"></a>
</li>
<li class="card category-card">
<div class="card-icon">
<img src="./assets/images/img4.jpg" width="72" height="72" alt="Course 4 icon">
</div>
<div>
<h3 class="title-lg">Design Systems & Guidelines</h3>
<p class="title-sm">Learn how to create consistent and scalable design systems.</p>
<a href="#" class="buy-now-btn">Buy Now</a>
</div>
<a href="#" class="layer-link" aria-label="Design Systems & Guidelines"></a>
</li>
<li class="card category-card">
<div class="card-icon">
<img src="./assets/images/img5.jpg" width="72" height="72" alt="Course 5 icon">
</div>
<div>
<h3 class="title-lg">UX for Mobile Devices</h3>
<p class="title-sm">Design user-friendly experiences for mobile applications.</p>
<a href="#" class="buy-now-btn">Buy Now</a>
</div>
<a href="#" class="layer-link" aria-label="UX for Mobile Devices"></a>
</li>
<li class="card category-card">
<div class="card-icon">
<img src="./assets/images/img6.jpg" width="72" height="72" alt="Course 6 icon">
</div>
<div>
<h3 class="title-lg">Web Accessibility in UI/UX</h3>
<p class="title-sm">Ensure your designs are accessible to all users.</p>
<a href="#" class="buy-now-btn">Buy Now</a>
</div>
<a href="#" class="layer-link" aria-label="Web Accessibility in UI/UX"></a>
</li>
</ul>
</body>
</html>