Coder Social home page Coder Social logo

exercise-12-vrzn_webdev's Introduction

VRZN Logo

๐Ÿ‘‹ WELCOME TO OUR REPOSITORY ๐Ÿ‘‹

๐Ÿš€ VRZN GROUP ๐Ÿš€

Explore our website on:

Netlify GitHub Pages

Our group focused on practicing fundamental concepts essential for creating dynamic and interactive websites. We explored key aspects such as HTML for structuring web content, CSS for designing and styling web pages, and JavaScript for implementing dynamic and responsive features. Through collaborative efforts, we gained hands-on experience in creating user-friendly interfaces, optimizing web pages for various devices, and enhancing overall user experience.


Review Assignment Due Date

exercise-12-vrzn_webdev's People

Contributors

odrunia-mark-ryan avatar galope-jhean avatar dimasacat-andronicus avatar naoe-adrian avatar go-christianharrel avatar github-classroom[bot] avatar

exercise-12-vrzn_webdev's Issues

Fix logo path

Good Day! please refer to your HTML and fix your logo directory

Link to your HTML File:
Adrian Naoe
Mark Odrunia

<link rel="icon" href="../img/vrzn.png" type="img/x-icon">

I suggest that you make this change

recommended changes

@Naoe-Adrian

Upon code review, I have noticed lines in your code that do not adhere to the guidelines that are given to us.

Please fix these issues ASAP.

First issue

<img id="slide-1"
src="./img/naoe-pic.jpg"
alt="Adrian naoe stolen picture" />
<img id="slide-2"
src="./img/group-pic-12jpg.jpg"
alt="BSIT 3-1 Friends Group Picture" />
<img id="slide-3"
src="./img/group-pic-11.jpg"
alt="Teknikal Team Group Picture" />
<img id="slide-4"
src="./img/group-pic-3.jpg"
alt="Andronicus birthday celebartion" />
<img id="slide-5"

ID names should be in snake case

Second Issue

<i class="location-name"></i> Muntinlupa City

<i> tag seems to be not doing anything.

Please make the proper changes and make sure to still adhere to the proper guidelines that are given to us.

Thank You!

Exceeds 80-Character Line Limit & Anchor tag path

Jhean Galope:
Please review your line column length related to the comment section, which can be found on lines 86, 205 and 222 Thank you .

<div class="details">
                  <h4>Christian Harrel Go</h4>
                  <p>We have similar goals, let's build community together sooner!</p>
</div>
 
  <form action="#">
                 <input type="text" id="input_name" placeholder="enter name">
                  <textarea name="comment" id="input_comment" placeholder="Enter your comment right here..."></textarea>
                   <button type="button" class="comment-btn" disabled>Comment</button>
  </form>

Andronicus Dimasacat:
Fix your anchor tag and line column length as well you can scan your codes starts on line 82.

  <div class="works-style">
          <li>
            <a
              href="https://www.figma.com/file/r6KJwKWoKIqhE3EhaOHwe6/DIMASACAT_HCI_DESIGN?type=design&node-id=0%3A1&mode=design&t=oOBXIAebmb2Jyowx-1"
              target="blank"
              >Photo Editor Design in Figma</a
            >
          </li>

Refer to the anchor tags in your container-works div.

Below is a suggested change for your anchor tag:

<a href="#"></a>

@Odrunia-Mark-Ryan Please review your line column length related to your works container, which can be found on lines 110-146

<b><a id="work_id" href="#" alt="work" target="_blank">Work 1</a></b>
            <p></p>
        </div>
        <div class="card-work">
            <div class="align">
                <span class="red"></span>
                <span class="yellow"></span>
                <span class="green"></span>
            </div>
            <b><a id="work_id" href="#" alt="work" target="_blank">Work 2</a></b>
 <p></p>

@go-christianharrel Please review your line column length related to the goals container, which can be found on lines 256

 <p>
            I'm convinced that the program/course I've chosen will open doors to
            a new path, allowing me to chase my dreams and fulfill my deepest
            passions.
  </p>

recommended changes

@Odrunia-Mark-Ryan

Upon code review, I've noticed a couple of lines of codes that could be better.

Although these suggestions aren't mandatory, they could contribute to better
code quality and adherence to best practices
. Feel free to implement these changes
if you find them beneficial.

FIRST SUGGESTED CHANGE

origin

<link rel="stylesheet" href="./styles.css" />

suggested change

<link rel="stylesheet" href="styles.css" />

reason for suggestion: by using the suggested change version, you create more
concise and cleaner code, making it easier for others to understand and maintain
your code. Additionally, it helps avoid any confusion that might arise from specifying
the current directory unnecessarily.

SECOND SUGGESTED CHANGE

Avoid using <br>

degree in Information Technology.</p><br>

<b>Christian Harrel Go</b><br />

<b>Jhean Khendrick Galope</b><br />

<b>Andronicus Dimasacat</b><br />

I noticed u used <b> and <em> a lot.
I recommend that u wrap them in a <p>
refer to this article about block and inline elements.

THIRD SUGGESTED CHANGE

comment section seems to accept blank spaces for your input and textarea.

if (name.value.length > 0 && txtarea.value.length > 0) {

this change could be enough to fix it.

if(name.value.trim().length > 0 && txtarea.value.trim().length > 0)

refer to trim() here

These are the minor issues I would to point out. Again, these suggestions aren't mandatory, but they could contribute to better
code quality and adherence to best practices
.

THANK YOU!

recommended changes

@go-christianharrel

Upon code review, I have noticed lines in your code that do not adhere to the guidelines that are given to us.

Please fix these issues ASAP.

First Issue

follow guidelines in naming classes

<h1 class="heading2" id="works">My Works</h1>

<h1 class="heading2" id="gallery">My Gallery</h1>

<h1 class="heading2" id="comments">Comment Section</h1>

make it heading-two

<div class="box2">
<h3>Web Development</h3>
</div>
</a>
<a href="#">
<div class="box2">
<h3>SIA</h3>
</div>
</a>
<a href="#">
<div class="box2">
<h3>Multimedia</h3>
</div>
</a>
<a href="#">
<div class="box2">
<h3>Project Management</h3>
</div>
</a>
<a href="#">
<div class="box2">
<h3>Database Admin</h3>
</div>
</a>
<a href="#">
<div class="box2">

make it box-two

Second Issue

Avoid using <br>

I'm <span>Christian Harrel Go<br /></span>PUPT Student,

Please make the proper changes and make sure to still adhere to the proper guidelines that are given to us.

Thank You!

fix anchor tag path

adhering to the instructions that are given to us, please change the path of your anchor tag to "#"

@Naoe-Adrian : HTML file

Refer to the anchor tags in your my-works-container div.

Below is a suggested change for your anchor tag:

<a href="#"></a>

Thank You!

recommended changes

@Dimasacat-Andronicus

Upon code review, I have noticed a line in your code that does not adhere to the guidelines that are given to us.

Please fix this issue ASAP.

simply adhere to the class naming guidelines

this should be comment-input-style

Please make the proper changes and make sure to still adhere to the proper guidelines that are given to us.

Thank You!

create documentation in README.md file

create documentation in the README.md file

indicate the name of our group, a short description of the project, and of course the Netlify URL where it is deployed.

utilize your knowledge in markdown, and make it detailed and creative.

Thank You!

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.