-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (53 loc) · 2.2 KB
/
Copy pathindex.html
File metadata and controls
59 lines (53 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Knowledge Timeline</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/30e3cbc541.js" crossorigin="anonymous"></script>
</head>
<body>
<header id="main-header">
<div class="container">
<h1><i class="fas fa-brain"></i> Knowledge Timeline</h1>
<h3><i class="fas fa-user"></i> Danial Hamidzadeh</h3>
</div>
</header>
<section id="timeline">
<ul>
<li>
<div>
<h3><i class="fas fa-chevron-right"></i> HTML & CSS</h3>
<p>Started my web development journey by learning semantic HTML and modern CSS layouts, including Flexbox, Grid, and responsive design.</p>
</div>
</li>
<li>
<div>
<h3><i class="fas fa-chevron-right"></i> JavaScript</h3>
<p>Learned the fundamentals of JavaScript, including DOM manipulation, events, asynchronous programming, and ES6 features.</p>
</div>
</li>
<li>
<div>
<h3><i class="fas fa-chevron-right"></i> Node.js</h3>
<p>Explored backend development by building server-side applications, working with APIs, and understanding the Node.js ecosystem.</p>
</div>
</li>
<li>
<div>
<h3><i class="fas fa-chevron-right"></i> Databases</h3>
<p>Worked with SQL and MongoDB to design databases, perform CRUD operations, and integrate data into web applications.</p>
</div>
</li>
<li>
<div>
<h3><i class="fas fa-chevron-right"></i> Full-Stack Development</h3>
<p>Combined frontend and backend technologies to build complete web applications while continuing to learn modern frameworks and best practices.</p>
</div>
</li>
</ul>
</section>
<script src="main.js"></script>
</body>
</html>