Coder Social home page Coder Social logo

task's Introduction

task's People

Contributors

allenpeter25 avatar

Watchers

 avatar

task's Issues

HW2ISSUE#6 Sidebar structure advice

<div class="aside">

Your sidebar menu can be rewritten in the next way:

<aside class="sidebar">
                <a href="#" class="sidebar__item">Ramda</a>
                <a href="#" class="sidebar__item">Why Ramda?</a>
                <a href="#" class="sidebar__item">What's Different?</a>
                <a href="#" class="sidebar__item">Introduction</a>
                <a href="#" class="sidebar__item">Philosophy</a>
</aside>

without any nested tags and height property.

Issue #4

.fs-22{

Please merge all properties into one class for each element (this way of styling with different selectors is good, but you need to know what exactly you can move into the universal selector and what not, this understanding comes with experience)

HW3ISSUE#4: Container issue

Please avoid using inline styles and use the approach of the container below.

image

The internal indents to design are 155px on each side, and the whole width is 1366px. 1366px - 155px * 2. Plz, find an appropriate container for your purposes in the table below. (1056px โ‰ˆ1140px) (https://getbootstrap.com/docs/5.0/layout/containers/)
image
image

Generally, no one property which impacts external geometry or decoration for the whole page shouldn't be inside the container.

.container {
    width: 1140px;
    margin: 0 auto;
}

HW3ISSUE#3: Incorrect images

This is my mistake according to the background image problem because zeplin doesn't allow downloading background images...
You can download them below:
Layer 21
Layer 22
Layer 23
Layer 24
Layer 25
Layer 26
log
background

Issue #8

<img class="w-1280 h-790" src="/img/smartphone-381237_1920-1024x683.jpg ">

if you've decided to use the same photo, then please follow the design
image

Issue #1

<!DOCTYPE html>

The structure of the project should be following:

css
| - reset.css
| - styles.css
img
| - smartphone-381237_1920-1024x683.jpg
index.html
readme.md

Issue #10

<button type="button" class="w-192 h-51 ml-527 mt-41 b-c font-w f-b ff-gotam ls-1 fs-12 mb-94 b-none">GET STARTED</button>

This is incorrect external horizontal indents using, you need to try the container approach to arrange content correctly.
image

Issue #12

<section>

It's a redundant way to select the separated section for the one img, plz move it to the section with other content.

Issue #2

<a><span class="w-59 h-14 ml-332 fs-18 nav-c fw-900 ls-2 .ff-roboto">

Plz align all tags correctly with required attrs:

                <a href="#">
                     <span class="w-59 h-14 ml-332 fs-18 nav-c fw-900 ls-2 .ff-roboto">
                         HOME
                     </span>
                </a>

And better to use the following link customizing:

<a href="#" class="nav-link">home</a>
.nav-link {
  ...
  text-transform: uppercasse;
  ...
}

HW2ISSUE#7 Container properties issue

<div class="container">

If you wanna use container restrictions for the page, you need to use the following implementation:

<header class="...">
   <div class="container">...</div>
</header>
<main class="...">
   <div class="container">...</div>
</main >
<footer class="...">
   <div class="container">...</div>
</footer>
.container {
    width: 1280px;
    margin: 0 auto;
}

Generally, no one property which impacts external geometry or decoration for the whole page shouldn't be inside the container.

Issue #9

height: 1626px;

This property is redundant for this selector because the content should be formed automatically without any restrictions if you try to use correct styling according to font-size, indents (internal/external), line-height and others you will see the same result

HW3ISSUE#5: Container issue

image

We shouldn't have any other properties that can impact on .container selector as an independent wrapper for each section

HW2ISSUE#5 Navbar structure advice

<div class="nav-bar">

Your nav menu can be rewritten in the next way:

<nav class="navbar">
                <a href="#" class="navbar__item">Functional Programming</a>
                <a href="#" class="navbar__item">Ramda</a>
                <a href="#" class="navbar__item">Fantasy Land Spec</a>
                <a href="#" class="navbar__item">Node.js for all</a>
</aside>

without any nested tags and height properties.

Issue #6

width: 1280px;

Contextually right way with width, but better to bring a special container for each section of the page.
If you wanna use width restrictions for the page, you need to use the following structure:

<header class="...">
   <div class="container">...</div>
</header>
<main class="...">
   <div class="container">...</div>
</main >
<footer class="...">
   <div class="container">...</div>
</footer>
.container {
    width: 960px;
    margin: 0 auto;
    text-align: center; /* can be used optionally if you wanna align the whole section */
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.