-
Notifications
You must be signed in to change notification settings - Fork 12
The first task "HTML + CSS" #14
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
base: master
Are you sure you want to change the base?
Conversation
makarov ivan/site_grid.html
Outdated
| </style> | ||
| </head> | ||
| <body> | ||
| <div class=container> |
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.
You'd better using not only div but other semantics tags. Here, for example, I would use the tag main
makarov ivan/site_grid.html
Outdated
| width: 581px; | ||
| height: 438px; | ||
| margin: auto; /*главный див будет по центру*/ | ||
| display: grid; |
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 really like your approach with grid layout. Also, I like that the widget looks great in all browsers
makarov ivan/site_grid.html
Outdated
| <body> | ||
| <div class=container> | ||
| <div class=picture_of_sun><p></p></div> | ||
| <div class="word_sunny"><span>Sunny</span></div> |
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.
Try to use more abstract names for classes here and below. For example, in this case, you could've used weather-condition.
|
Much better, thanks for your work! |
First task is complited.