-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
59 lines (49 loc) · 1.89 KB
/
sample.html
File metadata and controls
59 lines (49 loc) · 1.89 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>Logashree | Front-End Developer Portfolio</title>
<!-- FontAwesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Particle Background -->
<div id="particles-js"></div>
<!-- Portfolio Content -->
<div class="frame-Container">
<div class="picture">
<img src="./img/profile.jpg" alt="Logashree">
<h1>Logashree</h1>
<p>Front-End Developer | HTML • CSS • JavaScript • React • Bootstrap</p>
</div>
<div class="content">
<div class="card_info">
<i class="fa-solid fa-code fa-2x"></i>
<h3>Projects</h3>
<p>Built interactive and responsive web pages with modern UI components and clean design.</p>
</div>
<div class="card_info">
<i class="fa-solid fa-laptop-code fa-2x"></i>
<h3>Skills</h3>
<p>HTML, CSS, JavaScript, React, Bootstrap, GitHub</p>
</div>
<div class="card_info">
<i class="fa-solid fa-user-graduate fa-2x"></i>
<h3>Education</h3>
<p>Bachelor’s in Computer Science | 2024</p>
</div>
</div>
<div class="contact">
<h3>Connect with Me</h3>
<a href="mailto:logashree.dev@gmail.com"><i class="fa-solid fa-envelope"></i></a>
<a href="https://www.linkedin.com" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://github.com" target="_blank"><i class="fa-brands fa-github"></i></a>
</div>
</div>
<!-- Particles.js Script -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="index.js"></script>
</body>
</html>