-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog's.html
57 lines (52 loc) · 1.87 KB
/
blog's.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weekly Plans & Current Learning's</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Weekly Plans & Learnings</h1>
</header>
<section class="week-plan">
<h2>Week 1 Plan</h2>
<ul>
<li>Learn Selenium</li>
<li>Practice Figma</li>
<li>Implement learned skills in a project</li>
</ul>
</section>
<section class="learnings selenium">
<div class="learning-item">
<img src="resources/sele.png" alt="Selenium Logo">
<div class="description">
<h3>Selenium</h3>
<p>Learned how to automate web browsers using Selenium. Explored various functionalities like finding elements, handling forms, and managing browser sessions.</p>
</div>
</div>
</section>
<section class="learnings figma">
<div class="learning-item">
<img src="resources/fig.png" alt="Figma Logo">
<div class="description">
<h3>Figma</h3>
<p>Learned the basics of UI/UX design using Figma. Worked on creating wireframes and prototypes</p>
</div>
</div>
</section>
<section class="learnings react">
<div class="learning-item">
<img src="resources/react.jpeg" alt="React Logo">
<div class="description">
<h3>React Concepts</h3>
<p>Focused on mastering React concepts including state management, hooks, and component lifecycle. Worked on building dynamic UIs and enhancing performance using memoization techniques.</p>
</div>
</div>
</section>
<footer>
<p>© 2024 My Blog</p>
</footer>
</body>
</html>