-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.1.txt
153 lines (121 loc) · 3.97 KB
/
portfolio.1.txt
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
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Student Portfolio</title>
</head>
<body>
<header>
<h1>Mohammed Zabiullah</h1>
</header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="about">
<h2>About Me</h2>
<p>Hello! I'm Mohammed Zabiullah, a 2nd year Computer Science Engineering student with a passion for innovation and problem-solving.</p>
<p>From an early age, I've been fascinated by the world of technology and its limitless possibilities. This curiosity led me to pursue a degree in Computer science engineering, where I've gained valuable knowledge and skills in areas such as:</p>
<ul>
<li>Programming Languages:C, C++, Java, Python</li>
<li>Data Structures and Algorithms</li>
<li>Web Development: HTML, CSS, JavaScript</li>
</ul>
</section>
<section id="portfolio">
<h2>Portfolio</h2>
<div class="portfolioo">
<h3>Certifications</h3>
<p>Course Completion Certificate in Infosys Springboard</p>
<li>Programming in C++</li>
<li>HTML5-The Language</li>
<li>Java language features</li>
<li>Python Basics for Data Science</li>
<li>Introduction to Binary trees & Sorting</li>
</div>
<div class="portfolioo">
<h3>Project</h3>
<h4>Mobile application on travel and tourism</h4>
<p>A basic mobile application on travel and tourism built using Java,HTML,CSS,Javascript on Flutter platform.</p>
</div>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>Programming Languages: C, Java, Python, C++</li>
<li>Web Development: HTML, CSS, JavaScript</li>
<li>Data Structures and Algorithms</li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Email:mail@mail.com</p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/example" target="_blank">linkedin.com/in/example</a></p>
</section>
<script src="script.js"></script>
</body>
</html>
style.css
/* Add your CSS styles here to customize the appearance of the portfolio */
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
header h1 {
font-size: 2rem;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
background-color: #333;
padding: 10px 0;
}
nav ul li {
margin-right: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
section {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
margin-top: 20px;
border-radius: 5px;
}
.project {
margin-bottom: 20px;
}
/* Add more custom styles as needed */
js
// JavaScript code for adding interactivity to the portfolio
// Get all project elements
const portfoliooElements = document.querySelectorAll('.portfolioo');
// Add a click event listener to each project element
portfoliooElements.forEach((portfolioo) => {
const title = portfolioo.querySelector('h3');
const description = portfolioo.querySelector('p');
// Add a click event listener to the project title
title.addEventListener('click', () => {
// Toggle the visibility of the project description
description.classList.toggle('show-description');
});
});