Simple Website for Projects
Click here -> Discord
Click to open
<body>
<header>
<h1>Projects from [Your Name]</h1>
<p>Welcome Website from [Your Name]. Here you can find information about previous projects.</p>
</header>
<main>
<section>
<h2>Projekt 1</h2>
<p>Description of project 1</p>
<img src="images/image1.jpg" alt="Project 1">
<button onclick="window.location.href='https://google.com'">GitHub Link</button>
</section>
<section>
<h2>Project 2</h2>
<p>Description of project 2</p>
<img src="images/image2.jpg" alt="Project 2">
<button onclick="window.location.href='https://google.com'">GitHub Link</button>
</section>
<section>
<h2>Project 3</h2>
<p>Description of project 3</p>
<img src="images/image3.jpg" alt="Project 3">
<button onclick="window.location.href='https://google.com'">GitHub Link</button>
</section>
</main>
<footer>
<ul>
<li><a onclick="window.location.href='https://google.com'">Contact</a></li>
</ul>
<p>©[Your Name], 2023. All rights reserved.</p>
</footer>
</body>
...