Skip to content
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
1 change: 1 addition & 0 deletions I AM WEB DEV.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
- This is a sample code for our github project at Learn Computer Today
- Please clone this repository to your repo and edit the html file
- https://github.com/LearnComputerToday/githubproject
- https://github.com/dane1013/githubproject/tree/main
1 change: 1 addition & 0 deletions address-book-solid.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added banner-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added banner-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added banner-4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added banner-5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added banner.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions bars-solid.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions css3-brands.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions envelope-open-text-solid.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions html5-brands.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 19 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="X-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Portfolio</title>
<title>Dane Morte - Portfolio</title>
<style>
body, html {
height: 100%;
Expand All @@ -18,15 +18,14 @@
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
max-width: 800px; /* or any value you deem fit */
max-width: 800px;
margin: 0 auto;
}

header {
background-color: #f4f4f4;
padding: 10px 0;
padding: 30px 0;
width: 100%;
text-align: center;
}
Expand All @@ -48,13 +47,21 @@
margin: 20px auto;
display: block;
}

footer {
margin-top: 20px;
padding: 10px 0;
background-color: #f4f4f4;
width: 100%;
text-align: center;
}
</style>
</head>

<body>
<div class="container">
<header>
<h1>Your Name</h1>
<h1>Dane Morte</h1>
<nav>
<a href="#about">About</a>
<a href="#projects">Projects</a>
Expand All @@ -64,30 +71,30 @@ <h1>Your Name</h1>

<section id="about">
<h2>About Me</h2>
<img src="profile_picture.jpg" alt="Your Name's Profile Picture" class="profile-pic">
<img src="profile pic .jpg" alt="Dane's Picture" class="profile-pic">
<p>
A brief paragraph about yourself, your background, skills, and experience.
I am an aspiring full stack web developer currently learning web development.
</p>
</section>

<section id="projects">
<h2>Projects</h2>
<ul>
<li><a href="#">Project 1</a>: Short description of the project.</li>
<li><a href="#">Project 2</a>: Short description of another project.</li>
<li><a href="https://github.com/dane1013/githubproject">Project 1</a>: I have made a simple GitHub project.</li>
<li><a href="https://github.com/LearnComputerToday">Project 2</a>: Source code from Learn Computer Today repo.</li>
<!-- Add more projects as list items -->
</ul>
</section>

<section id="contact">
<h2>Contact</h2>
<p>
How to reach you: Email, LinkedIn, GitHub, etc.
Send me an email at danemorte1010@gmail.com
</p>
</section>

<footer>
<p>© 2023 by Your Name</p>
<p>© 2024 by Dane Morte</p>
</footer>
</div>
</body>
Expand Down
Loading