-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPort New.html
81 lines (77 loc) · 3.15 KB
/
Port New.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
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Portfolio</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<header>
<div class="container">
<nav>
<h1>PORTFOLIO</h1>
<ul>
<li><a href="#">About </a></li>
<li><a href="#">My Work</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<section class="flex-container">
<!--<div class="container">-->
<div class="profile">
<h2>Hi, I'm Adebayo Oluwaseun</h2>
<p>I am a Web Designer</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus luctus lacus.</p><br>
<a href="#" class="btn">View My Work</a>
</div>
<div class="profile-image"> <img src="./img/Ayo.png" alt="Adebayo Oluwaseun" class="profile-img"></div>
<!-- </div>-->
</section>
<section class="work">
<div class="container">
<h2>My Work</h2>
<div class="work-grid">
<div class="work-item">
<img src="./img/MealAss.png" alt="Portfolio Website">
<h3>Portfolio Website</h3>
<p>A professional website showcasing my past projects and work experience.</p>
</div>
<div class="work-item">
<img src="./img/Model.png" alt="E-Commerce Platform">
<h3>E-Commerce Platform</h3>
<p>An E-Commerce website with modern design and integrated payment systems.</p>
</div>
<div class="work-item">
<img src="./img/PlantisLife.png" alt="Blog Website">
<h3>Blog Website</h3>
<p>An engaging blog platform with dynamic content and responsive design.</p>
</div>
<div class="work-item">
<img src="./img/Sheshoot.png" alt="JavaScript Calculator">
<h3>JavaScript Calculator</h3>
<p>A fully functional calculator built with JavaScript, HTML, and CSS.</p>
</div>
<div class="work-item">
<img src="./img/Model.png" alt="Weather App">
<h3>Weather App</h3>
<p>A simple weather application that displays weather conditions and forecast.</p>
</div>
<div class="work-item">
<img src="./img/PlantisLife.png" alt="To-Do List App">
<h3>To-Do List App</h3>
<p>A productive to-do list app for users to manage tasks, set priorities, and reminders.</p>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Adebayo Oluwaseun | LinkedIn | GitHub</p>
</div>
</footer>
</body>
</html>