-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ac2ed5f
Showing
5 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
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
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; | ||
|
||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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.