-
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
Showing
2 changed files
with
79 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,55 @@ | ||
h1{ | ||
font-family: Arial, Helvetica, sans-serif; | ||
color: red; | ||
font-weight:bolder; | ||
font-size:xx-large; | ||
text-align: center; | ||
text-decoration: underline; | ||
background-color: black; | ||
|
||
|
||
|
||
|
||
|
||
|
||
} | ||
|
||
|
||
p{ | ||
font-family: Arial, Helvetica, sans-serif; | ||
color: white; | ||
font-weight:700px; | ||
font-size:large; | ||
text-align: center; | ||
border-style: solid; | ||
border-width: 10px 10px; | ||
border-color: rgb(255, 0, 0);background-color: black; | ||
|
||
|
||
|
||
|
||
|
||
|
||
} | ||
|
||
|
||
.img{ | ||
align-content: center; | ||
} | ||
|
||
|
||
h2{ | ||
font-family: Arial, Helvetica, sans-serif; | ||
color: red; | ||
font-weight:bolder; | ||
font-size:x-large; | ||
text-align:left; | ||
} | ||
li{ | ||
font-family: Arial, Helvetica, sans-serif; | ||
color: red; | ||
font-weight:700px; | ||
font-size:large; | ||
text-align:left; | ||
|
||
} |
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,24 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>My Portfolio</title> | ||
<link rel="stylesheet" href="css/p4me.css" /> | ||
</head> | ||
<body> | ||
<h1>About Me</h1> | ||
<p>My name is Luis and this is my first time doing coding. I work in construction at the moment but am hoping to change my career paths to something less physically demanding. During my free time i tend to play video games, watch anime, or just hangout with family/friends</p> | ||
<img src="https://www.opcmia.org/wp-content/uploads/2021/02/OPCMIA_Logo_2021.png" alt="local 200"> | ||
|
||
<h2>Contact Info</h2> | ||
<ul> | ||
<li>Phone</li> | ||
<li>Email</li> | ||
<li>Githb</li> | ||
|
||
</ul> | ||
|
||
|
||
</body> | ||
</html> |