Created
October 2, 2020 21:50
-
-
Save thatisuday/be3e05400fed2c0749a8818e0f44f57a to your computer and use it in GitHub Desktop.
A sample HTML file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>Rendering Test</title> | |
<!-- stylesheet --> | |
<link rel="stylesheet" href="./style.css"/> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Hello World!</h1> | |
<p>This is a sample paragraph.</p> | |
</div> | |
<!-- script --> | |
<script src="./main.js"></script> | |
</body> | |
</html> |
<title>Elias Ibrahim Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #444;
padding: 10px;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
}
section {
padding: 20px;
max-width: 800px;
margin: 0 auto;
}
.about, .portfolio, .contact {
margin-bottom: 40px;
}
.portfolio img {
max-width: 100%;
height: auto;
}
footer {
text-align: center;
padding: 10px 0;
background-color: #333;
color: #fff;
}
</style>
Elias Ibrahim Portfolio
Om mig Portfolio KontaktOm mig
Hej! Jag heter Elias Ibrahim och jag är en passionerad utvecklare med intresse för att skapa vackra och funktionella webbapplikationer. Med flera års erfarenhet inom webbutveckling har jag arbetat med olika projekt och teknologier.
Portfolio
Kontakt
Du kan nå mig på elias@example.com.
© 2024 Elias Ibrahim. Alla rättigheter förbehållna.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hac