-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
150 lines (146 loc) · 4.89 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!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="/style.css" />
<!-- general -->
<link rel="stylesheet" href="/general.css" />
<!-- header -->
<link rel="stylesheet" href="/header.css" />
<script src="/header.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 class="active" href="/index.html" class="underline-on-hover"
>ABOUT</a
>
</li>
<li>
<a href="/portfolio.html" class="underline-on-hover">PORTFOLIO</a>
</li>
<li><a href="" class="underline-on-hover">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 class="active" href="/index.html">ABOUT</a></li>
<li><a href="/portfolio.html">PORTFOLIO</a></li>
<li><a href="">CONTACT</a></li>
</ul>
</nav>
</section>
<section id="about">
<div class="ab-container">
<div class="ab-left">
<h1>Mohamed Farid</h1>
<p>
A newbie graphic designer with a big love for creativity and
problem-solving. I'm all about bringing ideas to life through
visuals that tell stories and spark emotions. I'm on a journey to
master my craft, fueled by curiosity and a passion for learning. I
believe in the power of collaboration and connecting with others, so
let's team up and make some magic together!
</p>
</div>
<div class="ab-right">
<img src="/img/person1.png" alt="" />
</div>
</div>
</section>
<section id="two-secs">
<div class="two-sec">
<div class="skil-set">
<div class="skill-head">
<h1>Skill Sets</h1>
</div>
<div class="skill-cont">
<div class="skil-txt">
<p>Adobe Photoshop</p>
<p>Adobe Illustrator</p>
<p>Adobe Indesign</p>
</div>
<div class="bars">
<div class="bar-graph">
<div class="bar" style="width: 80%"></div>
</div>
<div class="bar-graph">
<div class="bar" style="width: 90%"></div>
</div>
<div class="bar-graph">
<div class="bar" style="width: 85%"></div>
</div>
</div>
</div>
</div>
<div class="education">
<div class="edu-text">
<h1>Education</h1>
</div>
<div class="timeline">
<div>
<p class="timeline-yr">2022</p>
<div class="line"></div>
</div>
<div class="timeline-txt">
<p class="timeline-head">Graphic Design</p>
<p>Completed Graphic Design Course In Chennai</p>
</div>
<div>
<p class="timeline-yr">2021</p>
<div class="line"></div>
</div>
<div>
<p class="timeline-head">Under Graduate</p>
<p>
Completed Business Administration degree in Jamal Mohamed
College Trichy, India
</p>
</div>
<div><p class="timeline-yr">2018</p></div>
<div>
<p class="timeline-head">High School</p>
<p>Completed 12th grade in Thanjavur Tamil Nadu, India</p>
</div>
</div>
</div>
</div>
</section>
</body>
</html>