-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfofo.html
More file actions
93 lines (91 loc) · 4.1 KB
/
fofo.html
File metadata and controls
93 lines (91 loc) · 4.1 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
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
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UWINEZA Florence - Developer Profile</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/js/all.min.js"></script>
</head>
<body>
<header>
<nav>
<div class="logo">FEC_Tech</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="edison.html">Edison</a></li>
<li><a href="fofo.html">Florence</a></li>
<li><a href="./claire.html">Claire</a></li>
</ul>
</nav>
</header>
<section id="profile3" class="developer-profile">
<div class="profile-card">
<div class="profile-header">
<img src="./img/girlp.jpeg" alt="UWINEZA Florence" class="profile-photo">
<h2>UWINEZA Florence</h2>
<p>Frontend Developer & UX Designer</p>
</div>
<div class="profile-body">
<div class="about">
<h3>About Me</h3>
<p>Hello, I'm Florence, a frontend developer passionate about crafting user-friendly interfaces. I specialize in building responsive websites with a focus on UX and accessibility. My design philosophy centers on simplicity and usability.</p>
</div>
<div class="skills">
<h3>Skills</h3>
<div class="skill-bars">
<div class="skill-bar">
<span class="skill-name">HTML/CSS</span>
<div class="bar">
<div class="progress" style="width: 95%;" data-value="95%"></div>
</div>
</div>
<div class="skill-bar">
<span class="skill-name">JavaScript</span>
<div class="bar">
<div class="progress" style="width: 90%;" data-value="90%"></div>
</div>
</div>
<div class="skill-bar">
<span class="skill-name">Figma</span>
<div class="bar">
<div class="progress" style="width: 85%;" data-value="85%"></div>
</div>
</div>
</div>
</div>
<div class="hobbies">
<h3>Hobbies</h3>
<div class="hobby-icons">
<div class="hobby-icon"><i class="fas fa-paint-brush"></i><span>Painting</span></div>
<div class="hobby-icon"><i class="fas fa-yoga"></i><span>Yoga</span></div>
<div class="hobby-icon"><i class="fas fa-camera"></i><span>Photography</span></div>
</div>
</div>
<div class="media-section">
<h3>My Favorite Song</h3>
<audio controls>
<source src="./audio/florence-favorite-song.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<h3>Project Demo</h3>
<video controls>
<source src="https://youtu.be/example-florence-demo" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</section>
<footer>
<div class="footer-content">
<div class="social-links">
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
<p>© 2024 UWINEZA Florence. All rights reserved.</p>
</div>
</footer>
</body>
</html>