Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

West Midlands | Danial Bashirzadeh | Portfolio | personal-portfolio #136

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 19 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,29 @@
# Portfolio
# Danial Bashirzadeh's Portfolio

Your starting portfolio, to iterate on.
Welcome to my GitHub portfolio! Here you’ll find highlights of my work, skills, and ways to get in touch.

## Learning Objectives
## About Me

- Customise the starting portfolio with your professional details
- Iterate on your portfolio every module
- Review your colleague's portfolio
Hello! I’m Danial Bashirzadeh, a dedicated Web Developer with a passion for creating innovative and efficient solutions. I specialise in:
- Web and software development
- Full-stack applications
- Cloud technologies

## Requirements
I’m committed to continuous learning and delivering impactful results.

At Code Your Future, we expect everyone to graduate with a unique professional portfolio. Begin building this portfolio as soon as you begin our Software Development Course. At first, your portfolio will be a simple HTML/CSS page deployed to Github Pages or Netlify. This is your MVP.
## Projects

Every module, you will _iterate_ on your portfolio, adding a new project and improving your design and presentation. By the time you apply to Final Projects, your portfolio will help you show you are ready to be accepted on to a Final Projects team.
Explore my portfolio for projects showcasing skills in:
- Software development
- Web technologies
- Cloud-based solutions

## Acceptance Criteria
Each project reflects my problem-solving approach and focus on usability. Visit my repositories for details.

- [ ] My portfolio introduces me and my work
- [ ] The design and code is my own, not a template or tutorial
- [ ] Each project is linked to my code on Github and the deployed project
- [ ] I have published my professional contact information on my portfolio
- [ ] My Accessibility and SEO scores are 100 on Lighthouse
- [ ] My portfolio is deployed
- [ ] I have replaced this README with one that describes my own portfolio
## Contact

## Resources
Let’s connect!
- **Email**: [Get in touch](mailto:[email protected])
- **GitHub**: [My Profile](https://github.com/bashirzadehdanial)

- [Josh Comeau on building your early career profile](https://www.youtube.com/watch?v=OXiaEXfkAec)
- [How to Build an Effective Dev Portfolio](https://www.joshwcomeau.com/effective-portfolio/)
- [CYF Graduate Module](https://module-graduates.codeyourfuture.io/)
Thanks for visiting!
69 changes: 24 additions & 45 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,43 +2,19 @@
<html lang="en-gb">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>My Portfolio</title>
<meta
name="description"
content="The technical portfolio of trainee name"
name="Danial Bashirzadeh's portfolio"
content="The technical portfolio of Danial Bashirzadeh"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- suppress FOUC-->
<style>
html {
animation: fade-in 1s;
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
<link
rel="stylesheet"
href="style.css"
media="print"
onload="this.media='all'"
/>
<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=Raleway:wght@300;800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<h1>My Name</h1>
<h1>My Name is Danial</h1>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
Expand All @@ -47,38 +23,41 @@ <h1>My Name</h1>
</ul>
</nav>
</header>
<main tabindex="0">
<section id="about">
<header><h2>About Me</h2></header>
<main >
<section >
<header>
<h2>About Me</h2>
</header>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nulla nisi
excepturi quidem, eum rem doloribus quam aspernatur hic enim eligendi
commodi minima ullam necessitatibus, cumque blanditiis, nihil magni
amet consectetur?
I am a passionate Web Developer with a strong focus on building innovative and efficient solutions.
I thrive in solving problems, collaborating with diverse teams, and managing projects effectively.
My goal is to contribute to the growth and success of a dynamic organization while continuously improving and growing as a developer.
</p>
</section>
<section id="projects">
<header><h2>Projects Showcase</h2></header>
<header>
<h2>Projects Showcase</h2>
</header>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nulla nisi
excepturi quidem, eum rem doloribus quam aspernatur hic enim eligendi
commodi minima ullam necessitatibus, cumque blanditiis, nihil magni
amet consectetur?
Here are some of the projects I’ve worked on, which highlight my skills in software development, web technologies, and cloud computing.
Each project represents my commitment to problem-solving, innovation, and continuous learning.
From full-stack web applications to cloud-based solutions, I enjoy tackling challenges and delivering functional, user-friendly results.
Explore these projects to see the impact of my work and the breadth of my technical expertise.
</p>
</section>
<section id="contact">
<header><h2>Contact me</h2></header>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nulla nisi
excepturi quidem, eum rem doloribus quam aspernatur hic enim eligendi
commodi minima ullam necessitatibus, cumque blanditiis, nihil magni
amet consectetur?
I’d love to hear from you!
Whether you have questions about my projects, want to collaborate on a new idea, or just want to connect, feel free to reach out.
You can contact me through the form below or directly via email.
Let’s discuss how we can create something great together!
</p>
</section>
</main>
<footer>
<h3>
<a href="https://github.com/CodeYourFuture/Portfolio"
<a href="https://github.com/bashirzadehdanial"
><svg
focusable="false"
role="presentation"
Expand All @@ -94,7 +73,7 @@ <h3>
fill="currentColor"
/>
</svg>
Read me</a
My Github Profile</a
>
</h3>
</footer>
Expand Down