-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
76 lines (67 loc) · 2.97 KB
/
homepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SkillSwap Homepage</title>
<link rel="stylesheet" href="homepage.css">
</head>
<body>
<!-- Header Section with SkillSwap Name and Search Bar -->
<header>
<div class="header-container">
<h1 id="skillSwapName">SkillSwap</h1>
<input type="text" id="search" placeholder="Search for skills...">
<button id="dark-mode-toggle" aria-label="Toggle Dark Mode">🌙</button>
</div>
</header>
<!-- Current Learning Section -->
<section id="current-learning">
<h2>Your Current Learning Skills</h2>
<div class="cards-container">
<!-- Example Skill Cards with Links -->
<a href="profile.html?name=John+Doe&skill=JavaScript" class="skill-card">
<h3>JavaScript</h3>
<p class="instructor-name">John Doe</p>
<p class="description">A passionate developer helping you master JavaScript from scratch.</p>
</a>
<a href="profile.html?name=Jane+Smith&skill=HTML" class="skill-card">
<h3>HTML</h3>
<p class="instructor-name">Jane Smith</p>
<p class="description">Learn the fundamentals of HTML with hands-on examples.</p>
</a>
<a href="profile.html?name=Michael+Brown&skill=CSS" class="skill-card">
<h3>CSS</h3>
<p class="instructor-name">Michael Brown</p>
<p class="description">Improve your web design skills with practical CSS techniques.</p>
</a>
</div>
</section>
<!-- Suggested Skills Section -->
<section id="suggested-skills">
<h2>Suggested Skills</h2>
<div id="suggestions" class="cards-container">
<!-- Example Suggested Skill Cards -->
<a href="profile.html?name=Emily+Clark&skill=Python" class="card">
<img src="images/shubham.jpg" alt="Emily Clark" class="profile-img">
<h3>Python</h3>
<p>Emily Clark</p>
<p>Learn Python basics and advanced concepts with Emily.</p>
</a>
<a href="profile.html?name=David+Lee&skill=JavaScript" class="card">
<img src="images/shaz.jpg" alt="David Lee" class="profile-img">
<h3>JavaScript</h3>
<p>David Lee</p>
<p>Master JavaScript with David's detailed tutorials.</p>
</a>
<a href="profile.html?name=Sophia+Williams&skill=HTML+and+CSS" class="card">
<img src="images/pranav.jpg" alt="Sophia Williams" class="profile-img">
<h3>HTML and CSS</h3>
<p>Sophia Williams</p>
<p>Get hands-on with HTML and CSS with Sophia's easy tutorials.</p>
</a>
</div>
</section>
<script src="homepage.js"></script>
</body>
</html>