-
Notifications
You must be signed in to change notification settings - Fork 91
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
Aline's first project draft for review #43
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
<img class="image" src="Foto Aline Schlunegger.JPG"> | ||
<p class="comment">quite an old picture but I still like it...</p> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Aline's page</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe you forgot to close the head tag? |
||
<body> | ||
<!-- | ||
Write your code here inside the body to make it appear in the browser. | ||
Below is an example on how to use an image tag. Copy it and add it in the body, but outside the comment tag if you want to see how it looks like on the website. Then you can change the size and other styling for it in the css file. | ||
|
||
<img src="example-recipe-background.png" alt="Banana Bread"> | ||
|
||
--> | ||
Comment on lines
+10
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remember to erase all this comments once you are done.😀 |
||
<h1 class="top-heading">Aline Schlunegger</h1> | ||
<h2 class="second-heading">Film-Online-Marketing-Redaktion 🎬✏️💬📱</h2> | ||
<div class="light-coral-box"> | ||
<p class="paragraphs">🎬 Film - und alle anderen Formate, die bewegen.<p> | ||
<p class="paragraphs">Erfahrungen in: </p> | ||
<p class="paragraphs">🎟 Filmmarketing</p> | ||
<p class="paragraphs">🖋 Filmkritik</p> | ||
<p class="paragraphs">📺 Vertrieb und Verleih</p> | ||
<p class="paragraphs">🌎 International und national</p> | ||
<p class="paragraphs">#️⃣🎞 Online und offline</p> | ||
<p class="paragraphs">👩🏻🎓 funderiertes kultur- und filmwissenschaftliches Wissen.</p> | ||
</div> | ||
Comment on lines
+17
to
+28
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Something funny 🤡 is going on here with the indentation. Remember that if there's a new block, then you indent one more level. At Technigo, we use 2 spaces for indentation. Also: all the elements that are siblings should be in the same level. 🧑🤝🧑 |
||
</body> | ||
</html> | ||
<menu class="Menutab"> | ||
<a href="./about.html">This is me...</a> | ||
</menu> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* Here in the css file you'll write your styling. make sure to link the css file to the html file. If it's linked correctly you should see a light blue background. */ | ||
|
||
body { | ||
background-color: plum; | ||
} | ||
.top-heading { | ||
color: blanchedalmond; | ||
font-style: initial; | ||
font-family: 'Courier New', Courier, monospace; | ||
|
||
} | ||
.second-heading {color: blanchedalmond; | ||
font-style: initial; | ||
font-family: 'Courier New', Courier, monospace;} | ||
|
||
.light-coral-box { | ||
background-color: rgb(119, 177, 192); | ||
padding-inline-start: 30px; | ||
width: 400px; | ||
margin-left: 50px; | ||
padding-top: 30px; | ||
padding-bottom: 30px; | ||
padding-right: 30px; | ||
padding-left: 30px; | ||
} | ||
.paragraphs { | ||
color: blanchedalmond; | ||
font-family: 'Courier New', Courier, monospace; | ||
} | ||
.Menutab { | ||
color: blanchedalmond; | ||
font-family: 'Courier New', Courier, monospace; | ||
font-style: initial; | ||
font-size: 30px; | ||
} | ||
menu { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
font-family: Arial, Helvetica, sans-serif; | ||
} | ||
.image { | ||
width: 700px; | ||
height: 700px | ||
} | ||
.comment { | ||
font-family: 'Courier New', Courier, monospace; | ||
color: blanchedalmond; | ||
font-style: initial; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi! Nice to meet you! I'm Estefanía and I'll be taking a look at your site's code to see how can we make it functional and shiny.👋😀.