Skip to content

Commit

Permalink
include portfolio v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pascualal committed Jun 25, 2019
0 parents commit ac2ed5f
Show file tree
Hide file tree
Showing 5 changed files with 104 additions and 0 deletions.
76 changes: 76 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
/*CSS reset*/

*{
margin: 0;
padding: 0;
box-sizing: border-box;
}


/*targets the html body*/
body {
background-image: url(../images/bg.jpg);
background-position: center;
/*background-size: cover;*/
background-repeat: no-repeat;
color: #f2f2f2; /*off white*/
font-family: 'Noto Sans HK', sans-serif;
}
/*end of body styling*/



/*targets h1*/
h1 {
font-size: 50px;
background-color: #333; /*offblack*/
text-transform: uppercase;
margin-bottom: 15px;
letter-spacing: 3px;
}
/*end of h1*/


/*start h2*/
h2{
color: yellow;
text-transform: uppercase;
margin-bottom: 15px;
letter-spacing: 5px;
background-color: #333; /*offblack*/
padding: 10px;
border-radius: 10px;
}
/*end h2*/

/*class bio*/
.bio {
font-size: 18px;
line-height: 1.75;
/*background-color: #333; /*offblack*/
background-color: rgba(91,51,51,0.9);
}


/*ID attribue*/
#me {
height: 200px;
width: 200px;
border-radius: 100px;
border-width: 7px;
border-color: indianred;
border-style: solid;
margin-top: 50px;
margin-bottom: 25px;
}




/*class container*/
.container {
width: 500px;
margin: 0 auto;
text-align: center;

}
Binary file added assets/images/bg.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 assets/images/me.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AL Pascual | Web Developer</title>

<!-- external css -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+HK&display=swap" rel="stylesheet">

</head>

<body>

<div class="container">
<img id="me" src="assets/images/me.jpg">

<h1>AL PASCUAL</h1>
<h2>Full Stack Web Developer</h2>

<p class="bio">Call me AL, I cook, paint, code, play bball and plant trees.
I live in the border of Manila and Makati. Thats it for now. I wont give you the whole spill on one day. </p>
</div>

</body>

</html>
Empty file added notes.md
Empty file.

0 comments on commit ac2ed5f

Please sign in to comment.