-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (69 loc) · 2.63 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Portfolio of Mock Websites</title>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<section class="hero">
<div class="container">
<h1>My Web Design Portfolio</h1>
<p>
Showcasing a collection of meticulously crafted mock
websites, demonstrating modern design principles and
responsive layouts.
</p>
</div>
</section>
<section class="container">
<div class="projects-grid">
<div class="project-card">
<img
src="https://i.imgur.com/92v2VD5.png"
alt="Project 1"
class="project-image"
/>
<div class="project-content">
<h2 class="project-title">Creative Agency</h2>
<p class="project-description">
A modern, responsive website design for a creative
digital agency.
</p>
<a
href="DopezStudio/index.html"
target="_blank"
class="project-btn"
>View Project</a
>
</div>
</div>
<div class="project-card">
<img
src="https://i.imgur.com/L27zEXI.png"
alt="Project 2"
class="project-image"
/>
<div class="project-content">
<h2 class="project-title">Tech Startup</h2>
<p class="project-description">
Sleek and innovative website design for a
cutting-edge technology startup.
</p>
<a
href="IamMac/public/index.html"
target="_blank"
class="project-btn"
>View Project</a
>
</div>
</div>
</div>
</section>
</body>
</html>