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

Header students styles css #31

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
3 changes: 3 additions & 0 deletions NoyMoy/hello.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
consol.log('hello world');
consol.log('hello world');
consol.log('hello world');
59 changes: 59 additions & 0 deletions NoyMoy/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Noy Moyal CV</title>
<style>
* {
margin: 0;
padding: 0;
}
html, body {
height: 100vh;
font-family: Arial, Helvetica, sans-serif;
}
body {
background: linear-gradient(rgb(205, 228, 165) 40%, #333);
}
a {
color: rgb(48, 98, 207);
}
header {
padding: 30px;
display: flex;
align-items: center;
justify-content: center;
}
header aside {
padding: 20px;
flex: 1;
min-width: 300px;
}
.thumbnail img {
width: 100%;
border-radius: 50%;
}

@media (max-width: 512px) {
header {
padding: 10px;
flex-direction: column;
}
header aside {
padding: 30px 0;
min-width: unset;
}
}
</style>

</head>
<body>
<img src="D7A245B7-4B3E-4A4C-8A35-FE495B41D68F.jpeg" alt="Noy Moyal">

<h1> Hey I'm Noy Moyal</h1>
<p> Go to my <a href="https://www.linkedin.com/in/noy-moyal-13a4141b9/"> </a>
</p>
</body>
</html>
43 changes: 1 addition & 42 deletions NoyMoyal/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,48 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Noy Moyal CV</title>
<style>
* {
margin: 0;
padding: 0;
}
html, body {
height: 100vh;
font-family: Arial, Helvetica, sans-serif;
}
body {
background: linear-gradient(rgb(205, 228, 165) 40%, #333);
}
a {
color: rgb(48, 98, 207);
}
header {
padding: 30px;
display: flex;
align-items: center;
justify-content: center;
}
header aside {
padding: 20px;
flex: 1;
min-width: 300px;
}
.thumbnail img {
width: 100%;
border-radius: 50%;
}

@media (max-width: 512px) {
header {
padding: 10px;
flex-direction: column;
}
header aside {
padding: 30px 0;
min-width: unset;
}
}
</style>
<link rel="stylesheet" href="style.css">

</head>
<body>
Expand Down
18 changes: 18 additions & 0 deletions NoyMoyal/students page.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
header {
padding: 30px;
display: flex;
align-items: center;
justify-content: center;

}

@media (max-width: 512px) {
header {
padding: 10px;
flex-direction: column;
}
header aside {
padding: 30px 0;
min-width: unset;
}
}
41 changes: 41 additions & 0 deletions NoyMoyal/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
* {
margin: 0;
padding: 0;
}
html, body {
height: 100vh;
font-family: Arial, Helvetica, sans-serif;
}
body {
background: linear-gradient(rgb(205, 228, 165) 40%, #333);
}
a {
color: rgb(48, 98, 207);
}
header {
padding: 30px;
display: flex;
align-items: center;
justify-content: center;
}
header aside {
padding: 20px;
flex: 1;
min-width: 300px;
}
.thumbnail img {
width: 100%;
border-radius: 50%;
}

@media (max-width: 512px) {
header {
padding: 10px;
flex-direction: column;
}
header aside {
padding: 30px 0;
min-width: unset;
}
}