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

css changes #2

Open
wants to merge 4 commits into
base: master
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 IMG_3602.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resume Dana Kenzhaliyeva.pdf
Binary file not shown.
Binary file added background-gradient.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!doctype html>
<!-- comments look like this -->
<html>
<head>
<title>
Dana's web
</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header> <!-- stuff that never changes (site name, navigation) -->
<h1>Dana Kenzhaliyeva</h1>
<div> <!-- navigation section -->
<span><a href="https://www.linkedin.com/pub/dana-kenzhaliyeva/45/1aa/340">LinkedIn</a></span>
<span><a href="Resume Dana Kenzhaliyeva.pdf">Resume</a></span>
<span><a href="https://github.com/dkenzhal">Github</a></span>

</div>
</header>

<main> <!-- stuff that changes on every page -->
<p1>Candidate for Bachelor of Computer Science at the University of Waterloo </p1>

<p>(This site is under construction)</p>

</main>

<footer>
</footer>
</body>
</html>
19 changes: 18 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,22 @@
}

main {
padding: 0.5em;
padding: 1.5em;
}

p1 {
color: red;
}

body {
background-color: #ffffff;
background-image: url("IMG_3602.jpg"), url("background-gradient.jpg");
background-repeat: no-repeat, repeat;
background-position: right top;
background-attachment: ,fixed;
background-size: 15%, 100%;
}

header{
text-align: center;
}
22 changes: 10 additions & 12 deletions template.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,26 @@
<html>
<head>
<title>
Cool Website Title
Dana's web
</title>
<!-- <link rel.../> tag goes here. -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header> <!-- stuff that never changes (site name, navigation) -->
<h1>My New Shiny Website</h1>
<h1>Dana Kenzhaliyeva</h1>
<div> <!-- navigation section -->
<span><a href="about.html">About Me</a></span>
<span><a href="resume.html">Resume</a></span>
<span><a href="">Github</a></span>
<span><a href="https://www.linkedin.com/pub/dana-kenzhaliyeva/45/1aa/340">LinkedIn</a></span>
<span><a href="Resume Dana Kenzhaliyeva.pdf">Resume</a></span>
<span><a href="https://github.com/dkenzhal">Github</a></span>

</div>
</header>

<main> <!-- stuff that changes on every page -->
With shiny content that should go here!
<p1>Candidate for Bachelor of Computer Science at the University of Waterloo </p1>

Note that although this line looks like it should start a new paragraph,
it doesn't.

<p>Instead, put paragraphs in these tags</p>
<p>Like this.</p>
<p>(This site is under construction)</p>

</main>

<footer>
Expand Down