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
Binary file added Pajaron-Louis/asd.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 Pajaron-Louis/louis.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions Pajaron-Louis/profile.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<html>
<head>
<title>Profile Page</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<header>
<img id="logo" src="asd.jpg">
<h1>Profile<h1>
</header>

<nav>
<p>
<a href="https://www.facebook.com/pjrnls">Facebook</a>
<a href="https://twitter.com/PajaronLouis">Twitter</a>
<a href="https://www.instagram.com/pjrnls/">Instagram</a>
<a href="https://www.youtube.com/watch?v=qgJVsJlVUp0">Youtube</a>
</p>
</nav>
<img src="louis.jpg">
<h2>Personal Information</h2>
<hr>
<section>
<article>
<p>Pajaron Louis Marcel</p>
<p>January 05, 2003</p>
<p>Barangka Marikina City</p>
</section>
</article>
<p><b>Educational Background:</b></h3>
<hr>
<section>
<article>
<p>Went to Barangka Elementary School (2009)</p>
<p>Went to Barangka National High School (2015)</p>
<p>Went to Jesus Dela Peña National High School (2019)</p>
</section>
</article>
<h3>Hobbies and interest</h3>
<hr>
<section>
<article>
<p>I love playing computer games</p>
</section>
</article>
<h3>Something about myself</h3>
<hr>
<section>
<article>
<p>I'm a moody person</p>
</section>
</article>




</html>

86 changes: 86 additions & 0 deletions Pajaron-Louis/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
* {

font-family: "Arial Rounded MT Bold";

}

body {

background: #D9E76C;

}

h1 {

color: #537D8D;


}

h2 {

color: #537D8D;

}

h3 {

color: #537D8D;
}

b {

color: #537D8D;
}


header * {

display: inline;
vertical-align: top;
}

img {

width: 200px;
height: 200px;
border-radius: 50%;

}
#logo {
height: 50px;
width:50px;
}

nav p a {
text-decoration: none;
padding-right: 10px;
color: black;
margin:5px;
border: #D9E76C 0.5px solid;

}
nav p a:hover {
border:#131112 0.5px solid;

}

nav {

position: fixed;
background-color: #D9E76C;
top: 0;
width: 100%;

}


header {

margin-top: 50px;
}