Christopher Nolan tribute page by me

tribute to nolan

hello guys theres the :point_up_2: the link to my first tribute page . i still need lots of practice and experience on it ,still tell me what you feel thank you

Hi @ByteFreedom4699 ,

This code is not correct (the h6 element):

<div class="container-fluid">
  <h6 align="center" style="font-family:Monospace" <I>......Tribute To Nolan</I></h6> 
 <div class="image"> 

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.


This code is not correct (the align attribute is deprecated):

<h6 align="center" style="font-family:Monospace" <I>......Tribute To Nolan</I></h6> 
 <div class="image"> 

Reference:
Alignment, font styles, and horizontal rules in HTML documents

Attribute definitions
align = left|center|right|justify [CI]
Deprecated. This attribute specifies the horizontal alignment of its element with respect to the surrounding context. Possible values:


Is better not use the style attibute:

<h1 style="font-family:Monospace">

Because, you have multiple styles sources (That’s make the page more difficult to review.):

  • The CSS tab
  • Every element on the html with the style attibute

Cheers and happy coding :slight_smile: