I finish my first tribute page
What do you think? Feedback welcomed.
Thank you guys,
Luka
I finish my first tribute page
What do you think? Feedback welcomed.
Thank you guys,
Luka
Hi @Luka85,
Is better not use the style attribute:
<h1 class=" text-center "style= "color:black; margin-top:-10px;font-family:arial; font-style:normal;">Tina Maze</h1>
<h3 class="text-center"style="color:black; font-family:arial; font-style:normal">
Because, you have multiple styles sources (That’s make the page more difficult to review.):
MDN documentation:
style - HTML: HyperText Markup Language | MDN
The style global attribute contains CSS styling declarations to be applied to the element. Note that it is recommended for styles to be defined in a separate file or files. This attribute and the
<style>
element have mainly the purpose of allowing for quick styling, for example for testing purposes.
<div class="col-xs-12">
<body style="background-color:grey; margin-top:55px; margin-bottom:20px"
></body>
MDN documentation :
<body>: The Document Body element - HTML: HyperText Markup Language | MDN
Permitted parents: It must be the second element of an
<html>
element.
HTML inspector:
<
is not a valid attribute of the <img>
element: <img class=" img-responsive" ... </img>
MDN documentation:
<img>: The Image Embed element - HTML: HyperText Markup Language | MDN
Tag omission
Must have a start tag and must not have an end tag.
<em>
element is affecting the rest of the code:<h3 class="text-center"style="color:black; font-family:arial; font-style:normal">
<em>"My life is my decision"</h3>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"/>
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
How to use Bootstrap with codepen:
Cheers and happy coding
Thank you @Diego_Perez to your help, i really appreciate it…
What do you think now? i corrected my mistakes.
https://codepen.io/LukaK/pen/MJaLxv
Thanks again
Hi @Luka85,
<style>
element, in codepen you can use the CSS tab.<h1 class=" text-center ">Tina Maze</h1>
<h3 class="text-center">
<em>"My life is my decision"</em></h3>
MDN documentation:
<h1>–<h6>: The HTML Section Heading elements - HTML: HyperText Markup Language | MDN
**Do not use lower levels to decrease heading font size: use the CSS font-size property instead.**Avoid skipping heading levels: always start from
<h1>
, next use<h2>
and so on.
h2–h6 elements must not be used to markup subheadings, subtitles, alternative titles and taglines unless intended to be the heading for a new section or subsection. Instead use the markup patterns in the §4.13 Common idioms without dedicated elements section of the specification.
Common Idioms
HTML Standard
Cheers and happy coding