-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
187 lines (167 loc) · 7.27 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html>
<head>
<title>Jane Doe - Portfolio</title>
<link rel="stylesheet" href="./style.css"/>
<script src="./script.js"></script>
</head>
<body>
<!-- Navigation Bar -->
<nav>
<div id="home">
<div class="profile_name">
Mouad Ghouti
<div class="contact_info">
<img src="html_images/envelope.png" alt="https://icons8.com/icon/124377/circled-envelope"/>
</div>
<div style="clear:both;"></div>
<div class="contact_info">
<img src="html_images/phone.png" alt="https://icons8.com/icon/124377/circled-envelope"/>
+13456764598
</div>
</div>
<div class="topdiv">
<a class="topmenu" href="#about-me">About Me</a>
<a class="topmenu" href="#skills">Skills</a>
<a class="topmenu" href="#projects">Projects</a>
<a class="topmenu" href="#recommendations">Recommendations</a>
</div>
</div>
</nav>
<!-- About Me -->
<section id="about-me" class="container">
<div>
<img src="https://media2.giphy.com/media/qgQUggAC3Pfv687qPC/giphy.gif" class="profile_image" />
</div>
<div>
<h1>
Hi, I'm Mouad Ghouti <img src="https://www.emojibase.com/resources/img/emojis/apple/1f44b.png" width="60px"/>
</h1>
<p>
As a sophomore computer science student, I have developed a diverse set of skills and experiences that I am excited to share on this website.
In addition to my academic achievements, I have also excelled as a varsity basketball player, winning three championships.
Furthermore, I have pursued photography as a creative outlet, which has strengthened my ability to think outside the box and approach problems from different angles.
This website serves as a platform for anyone interested in my work to gain a comprehensive understanding of my abilities and accomplishments.
I am driven by a passion for computer science and committed to expanding my knowledge and skills in this field.
Thank you for taking the time to learn more about me.
</p>
</div>
</section>
<!-- Skills -->
<section id="skills">
<h2>Skills</h2>
<div style="clear:both;"></div>
<div class="all_skills">
<div class="skill">
<img src="html_images/html5.png"/>
<h6>HTML</h6>
<p>1 month experience</p>
</div>
<div class="skill">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/CSS3_logo_and_wordmark.svg/1452px-CSS3_logo_and_wordmark.svg.png"/>
<h6>CSS</h6>
<p>1 month experience</p>
</div>
<div class="skill">
<img src="html_images/js.jpeg"/>
<h6>JavaScript</h6>
<p>1 month experience</p>
</div>
<div class="skill">
<img src="https://cdn4.iconfinder.com/data/icons/logos-and-brands/512/181_Java_logo_logos-512.png"/>
<h6>Java</h6>
<p>1 year experience</p>
</div>
<div class="skill">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Python-logo-notext.svg/1869px-Python-logo-notext.svg.png"/>
<h6>Python</h6>
<p>6 months experience</p>
</div>
<!-- Add more skills here -->
</div>
</section>
<!-- Projects -->
<section class="projects" id="projects">
<h2>
Projects
</h2>
<div style="clear:both;"></div>
<div id="projects-container" class="projects-container">
<div class="project-card">
<h3>Machine Learning model</h3>
<ul>
<li>Developed a sentiment analysis model for movie reviews, The model to classifies the reviews as positive or negative. I used logistic regression as the primary learning algorithm. </li>
</ul>
</div>
<hr>
<div class="project-card">
<h3>Developed a Video game</h3>
<ul>
<li>Developed a two dimensional side scroller game, more commonly known as a metroidvania. I used C# for most of the game. Furthermore, The prototype for the game was made on stencyl. Also, all the visual elemnts were drawn using photoshop. Finally, the game was built using the Unity engine utilising assets like PlayMaker, TextMesh Pro and 2d Toolkit from the asset store. </li>
</ul>
</div>
<hr>
<div class="project-card">
<h3>Created a web-based project management tool</h3>
<ul>
<li>Created a web-based project management tool that allows users to track their projects, assign tasks, and collaborate with team members. I used web frameworks like Django and Ruby on Rails to build the tool</li>
</ul>
</div>
</div>
</section>
<div style="clear:both;"></div>
<!-- Recommendations -->
<section id="recommendations">
<h2>Recommendations</h2>
<div style="clear:both;"></div>
<div class="all_recommendations" id="all_recommendations">
<div class="recommendation">
<span>“</span>
Working with Mouad was a pleasure. He is a quick learner and great team player.
His curious mind and initiative make him a valuable asset to any team."
<span>”</span>
</div>
<div class="recommendation">
<span>“</span>
I had the pleasure of working with Mouad,
he consistently went above and beyond to ensure that the project was a success.
I would highly recommend Mouad to anyone seeking a dedicated and talented professional for their team
<span>”</span>
</div>
<div class="recommendation">
<span>“</span>
I had the pleasure of working with Mouad on a game development project.
He demonstrated exceptional expertise and attention to detail.
I highly recommend John for any future projects.
<span>”</span>
</div>
</div>
</section>
<!-- Recommendation Form -->
<section id="contact">
<div class="flex_center">
<fieldset>
<legend class="introduction">Leave a Recommendation</legend>
<input type="text" placeholder="Name (Optional)"> <br/>
<textarea id="new_recommendation" cols="500" rows="10" placeholder="Message"></textarea>
<div class="flex_center">
<button id="recommend_btn" onclick="addRecommendation()">Submit</button>
</div>
</fieldset>
</div>
</section>
<div class="iconbutton">
<a href="#home">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" width="63px">
<path stroke-linecap="round" stroke-linejoin="round" d="M15 11.25l-3-3m0 0l-3 3m3-3v7.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</a>
</div>
<div class="popup" id="popup" class="flex_center">
<img src="html_images/checkmark--outline.svg"/>
<h3>Thanks for leaving a recommendation!</h3>
<button onclick="showPopup(false)">Ok</button>
</div>
</body>
</html>