-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFinal Project.html
153 lines (135 loc) · 5.15 KB
/
Final Project.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
<!DOCTYPE html>
<html>
<head>
<title>Mehmet Çullu - 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">
Mehmet Çullu
<div class="contact_info">
<img src="html_finalprojimages/envelope.png" alt="https://icons8.com/icon/124377/circled-envelope"/>
mehmetculluu@gmail.com
</div>
<div style="clear:both;"></div>
<div class="contact_info">
<img src="html_finalprojimages/phone.png" alt="https://icons8.com/icon/124377/circled-envelope"/>
+123456789
</div>
</div>
<div class="topdiv">
<a class="topmenu" href="#about-me"><u>About Me</u></a>
<a class="topmenu" href="#skills"><u>Skills</u></a>
<a class="topmenu" href="#projects"><u>Projects</u></a>
<a class="topmenu" href="#recommendations"><u>Recommendations</u></a>
<!-- Add the links for Skills, Projects and Recommendation here -->
</div>
</div>
</nav>
<!-- About Me -->
<section id="about-me" class="container">
<div>
<img src="html_finalprojimages/my_image.png" class="profile_image"/>
</div>
<div>
<h1>
Hi, I'm Mehmet Çullu! <img src="html_finalprojimages/emoji_hand.png" width="60px"/>
</h1>
<p>
I am a student who have just started to college and improve himself based on full stack development.
I have studied full stack developing in both application and presentation layers since beginning of 2023.
However, beside I'm a newbie in this area, I am determined to study and increasing my knowledge in this area day by day.
So, I've worked on applications and microservices deployed on IBM Cloud.
</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_finalprojimages/python.png"/>
<h6>Python</h6>
<p>2 years experience</p>
</div>
<div class="skill">
<img src="html_finalprojimages/js.jpeg"/>
<h6>JavaScript</h6>
<p>1 year experience</p>
</div>
<div class="skill">
<img src="html_finalprojimages/html5.png"/>
<h6>HTML</h6>
<p>Less than a year experience</p>
</div>
</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>InstaBot</h3>
<ul>
<li>Developed a Instagram bot for an automobile client using HTML, CSS.</li>
</ul>
</div>
<hr>
<div class="project-card">
<h3>Movie Searcher</h3>
<ul>
<li>Developed and deployed a movie searcher for the example web page of mine which shows the suitable movies according to keyword search. </li>
</ul>
</div>
<hr>
<div class="project-card">
<h3>Food Order Website</h3>
<ul>
<li>Created a styled multi-page website for a new player in the fast-food industry and integrated it with a shopping cart, using stripe for payment gateway</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>
</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_finalprojimages/checkmark--outline.svg"/>
<h3>Your massage have been taken</h3>
<button onclick="showPopup(false)">Ok</button>
</div>
</body>
</html>