-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
121 lines (118 loc) · 3.97 KB
/
portfolio.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mohamed farid</title>
<link rel="stylesheet" href="/portfolio.css" />
<!-- general -->
<link rel="stylesheet" href="/general.css" />
<!-- header -->
<link rel="stylesheet" href="/header.css" />
<script src="/header.js" defer></script>
<script src="/header2.js" defer></script>
<!-- font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<section id="header">
<div class="header-cont">
<div>
<img class="logo" src="/img/logo.svg" alt="" />
</div>
<div class="nav-cont">
<ul class="nav">
<li><a href="/index.html">ABOUT</a></li>
<li><a class="active" href="/portfolio.html">PORTFOLIO</a></li>
<li><a href="">CONTACT</a></li>
</ul>
</div>
<div class="ham-menu">
<svg
id="menu-icon"
xmlns="http://www.w3.org/2000/svg"
width="36"
height="36"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</div>
</div>
</section>
<section class="mobile-menu">
<nav>
<ul class="mob-nav-container">
<li><a href="/index.html">ABOUT</a></li>
<li><a class="active" href="/portfolio.html">PORTFOLIO</a></li>
<li><a href="">CONTACT</a></li>
</ul>
</nav>
</section>
<section id="port">
<div class="port-cont">
<h1>My Portfolio.</h1>
<p>
Welcome to my portfolio! Here you'll find a curated selection of my
recent graphic design projects, showcasing my diverse skills and
creative approach. Each project represents a unique opportunity to
collaborate with clients and bring their visions to life through
thoughtful design solutions.
</p>
<div class="line-b"></div>
</div>
</section>
<section id="img-c">
<section class="img-gallary">
<a href="/detail-view.html">
<div class="img-cont">
<img src="/img/p1.png" alt="" />
<div class="text"><p>NBA poster</p></div>
</div>
</a>
<a href="/detail-view.html">
<div class="img-cont">
<img src="/img/p2.jpg" alt="" />
<div class="text"><p>Adevertisement</p></div>
</div>
</a>
<a href="/detail-view.html">
<div class="img-cont">
<img src="/img/p3.png" alt="" />
<div class="text"><p>Chocolate packaging</p></div>
</div>
</a>
<a href="/detail-view.html">
<div class="img-cont">
<img src="/img/p1.png" alt="" />
<div class="text"><p>NBA poster</p></div>
</div>
</a>
<a href="/detail-view.html">
<div class="img-cont">
<img src="/img/p2.jpg" alt="" />
<div class="text"><p>Adevertisement</p></div>
</div>
</a>
<a href="/detail-view.html">
<div class="img-cont">
<img src="/img/p3.png" alt="" />
<div class="text"><p>Chocolate packaging</p></div>
</div>
</a>
</section>
</section>
</body>
</html>