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
38 changes: 38 additions & 0 deletions about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
h1 {
color:blue;
font-family: Luminari;
font-size: 30px;
}
p {
padding-top: 20px;
padding-bottom: 20px;
}

h3 {
text-decoration: underline;
}

body {
font-family: sans-serif;
}

img {
height: 200px;
}

li {
color: blue;
background-color: rgb(255, 182, 193);
text-align: center;
border: 1px red solid;
border-radius: 10px;
padding-left: 30px;
}

ol {
font-weight: bold;
}

ul {
list-style-type: none;
}
3 changes: 2 additions & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="utf-8">
<title>CSS Intro</title>
<link rel="stylesheet" href="about.css">
</head>
<body>

Expand Down Expand Up @@ -48,7 +49,7 @@ <h2>Contact Me</h2>
</div>

<ul>
<li> <a href="github.com">github link</a> </li>
<li><a href="github.com">github link</a> </li>
<li> <a href="linkedin.com">LinkedIn link</a> </li>
<li> <a href="angellist.com">Angel list link</a> </li>
</ul>
Expand Down
Loading