-
-
Notifications
You must be signed in to change notification settings - Fork 26
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
WIP: 2021 04 06 swoopstyle mycvjr2 #290
base: master
Are you sure you want to change the base?
WIP: 2021 04 06 swoopstyle mycvjr2 #290
Conversation
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.
💯
@@ -0,0 +1,14 @@ | |||
.section-title Welcome to My CV |
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.
I am pretty sure you don't want the button inside the section-title
element
@@ -0,0 +1,22 @@ | |||
doctype |
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.
doctype html
, you forgot to tell the browser what kind of doctype it is
html | ||
head | ||
title adding some content for the website | ||
link(rel="stylesheet", href = "style.css") |
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.
remove extra spaces from link(rel="stylesheet", href = "style.css")
to link(rel="stylesheet", href="style.css")
link(rel="stylesheet", href = "style.css") | ||
body | ||
.content | ||
.section-title Welcome to My CV |
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.
too much indentation, .section-title
should be the child of .content
at the same level as button
No description provided.