Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated font size/align #22

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
Binary file added .DS_Store
Binary file not shown.
44 changes: 44 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
h1{
color:red;
background-color: yellow;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: xx-large;
display:flex;
align-items: center;
justify-content: center;
}

body {

color: blue;
background-color: beige;
font-family: cursive;
font-size: x-large;
display:flex;
align-items: center;
justify-content: center;
}

h2{
color:red;
background-color: yellow;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: x-large;
display:flex;
align-items: center;
justify-content: center;
}

h3{
color:red;
background-color: yellow;
font-family: Georgia, 'Times New Roman', Times, serif;
display:flex;
align-items: center;
justify-content: center;
}

#showcase {


}
Binary file added images/.DS_Store
Binary file not shown.
Binary file added images/mypic.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 21 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,29 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>My Portfolio</title>
<link rel="stylesheet" href="css/styles.css">
</head>

<div>
<h1>Rakesh Shrestha</h1>
<h2>Software Developer</h2>
<hr>
<p>My <em> favorite </em> thing about programming is coding.</p>
<img src="https://4.bp.blogspot.com/_I3kBMyyQH0o/S2Myev1IyWI/AAAAAAAAACI/WwAC2sB_hrA/S220-s113/Rakesh+Shrestha.jpg">
<h3>About Me</h3>
<p>Hipster ipsum dolor sit amet consectetur adipisicing elit. Totam fuga est, omnis expedita optio deleniti? Dicta, debitis! Iusto, quia accusamus veniam facilis nobis quidem perferendis debitis consectetur repudiandae? Modi, non. I'm baby williamsburg bitters raw denim mumblecore pitchfork. Selfies edison bulb to&B affogato.</p>
<h3> My Projects</h3>
<un>
<li> Project 1</li>
<li>Project 2</li>
<li> Project 3</li>
</un>
<h3>Contact Me </h3>
<p> <b>Phone: (123) 456-7890 </p>
<a href="mailto:[email protected]">Email: [email protected]</a>
</b>
</div>
<body>
<H1>
My Portfolio
</H1>

<!--
Directions:
1. Create a DIV element to contain the page content
Expand Down