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
39 changes: 39 additions & 0 deletions about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
body {
font-family: sans-serif;
}

h1 {
font-family: Luminari;
font-size: 30px;
color: rgb(0, 0, 255);
}

ul {
list-style-type: none;
text-align: center;
}

ol {
font-weight: 700;
}

li {
color: blue;
background-color: lightpink;
border: 1px solid rgb(255, 0, 0);
border-radius: 10px;
padding-left: 30px;
}

img {
height: 200px;
}

h3 {
text-decoration-line: underline;
}

p {
padding-top: 20px;
padding-bottom: 20px;
}
73 changes: 38 additions & 35 deletions about.html
Original file line number Diff line number Diff line change
@@ -1,61 +1,64 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>

<head>
<meta charset="utf-8">
<link rel="stylesheet" href="about.css">
<title>CSS Intro</title>
</head>
<body>
</head>

<body>

<h1>Your Name Here</h1>
<h1>Tiffany Arnold</h1>
<div>
<p>This is a bunch of information about myself. I'm from here and there and discovered my
love of programming when this happend. When I'm not working I'm busy doing this and that.
</p>
<p>This is a bunch of information about myself. I'm from here and there and discovered my love of programming when this happend. When I'm not working I'm busy doing this and that.
</p>
</div>

<img src="https://www.breakthrough-pt.com/wp-content/uploads/2014/11/female-default-profile-photo.png" alt="" >
<img src="https://d2saw6je89goi1.cloudfront.net/uploads/digital_asset/file/778850/Tiffany_Arnold__4_.png" alt="">

<div >
<h3>Here are some of my Skills!</h3>
<ul>
<h3>Languages</h3>
<li>JavaScript</li>
<li>SQL</li>
<li>HTML5</li>
<li>CSS3</li>
<div>
<h3>Here are some of my Skills!</h3>
<ul>
<h3>Languages</h3>
<li>JavaScript</li>
<li>SQL</li>
<li>HTML5</li>
<li>CSS3</li>

</ul>
</ul>

<ol>
<h3>Libraries</h3>
<li>React</li>
<li>PostgreSQL</li>
<li>Node</li>
<li>Bootstrap</li>
<ol>
<h3>Libraries</h3>
<li>React</li>
<li>PostgreSQL</li>
<li>Node</li>
<li>Bootstrap</li>

</ol>
</ol>
</div>

<div>
<h3>Hardest Bug So Far</h3>
<p>My hardest bug I ever came across was this infinite loop I couldn't escape. </p>
<p>I came up with a totally sick solution though by doing ... </p>
<h3>Hardest Bug So Far</h3>
<p>My hardest bug I ever came across was this infinite loop I couldn't escape. </p>
<p>I came up with a totally sick solution though by doing ... </p>
</div>

<h2>Contact Me</h2>
<div>
Email me at: <a href="mailto:[email protected]" target="_top">[email protected]</a>
Email me at: <a href="mailto:[email protected]" target="_top">[email protected]</a>
</div>

<ul>
<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>
<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>

<form action="index.html" method="post">
<input type="text" name="" value="">
<input type="submit" name="sumbit" value="submit">
<input type="text" name="" value="">
<input type="submit" name="sumbit" value="submit">
</form>
</body>
</html>
</body>

</html>
Loading