ElGautinho / My-first-tutorial-project

Challenge: capture a tutorial project in a GitHub repository
4 stars 0 forks source link

second group question and last #5

Open ElGautinho opened 3 months ago

ElGautinho commented 3 months ago

What are your best skills?

    <div class="form-group">
      <p>Would you like to learn new things?</p>
      <label>
        <input
          name="user-recommend"
          value="definitely"
          type="radio"
          class="input-radio"
          checked
        />Definitely</label>
      <label>
        <input
          name="user-recommend"
          value="maybe"
          type="radio"
          class="input-radio"
        />Maybe</label>
    <label><input
          name="user-recommend"
          value="not-sure"
          type="radio"
          class="input-radio"
        />Not sure</label>
    </div>
    <div class="form-group">
        <p>What is your favorite programme</p>
        <select id="most-like" name="mostLike" class="form-control" required>
          <option disabled selected value>Select your tool</option>
          <option value="challenges">Ligthroom</option>
          <option value="projects">Photoshop</option>
          <option value="community">PremierPro</option>
          <option value="openSource">Vmix</option>
          <option value="Other">Other</option>
        </select>
      </div>
      <div class="form-group">
        <p>
          What task would you like to be assigned to?
          <span class="clue">(Check all that apply)</span>
        </p>
        <label
          ><input
            name="prefer"
            value="front-end-projects"
            type="checkbox"
            class="input-checkbox"
          />Photograph</label
        >
        <label>
          <input
            name="prefer"
            value="back-end-projects"
            type="checkbox"
            class="input-checkbox"
          />Camera-man</label
        >
        <label
          ><input
            name="prefer"
            value="open-source-community"
            type="checkbox"
            class="input-checkbox"
          />Graphic Designer</label
        >
        <label
          ><input
            name="prefer"
            value="gitter-help-rooms"
            type="checkbox"
            class="input-checkbox"
          />Content creator</label
        >
        <label
          ><input
            name="prefer"
            value="videos"
            type="checkbox"
            class="input-checkbox"
          />Sound Master</label
        >
        <label
          ><input
            name="prefer"
            value="city-meetups"
            type="checkbox"
            class="input-checkbox"
          />Web manager</label
        >
        <label
          ><input
            name="prefer"
            value="wiki"
            type="checkbox"
            class="input-checkbox"
          />Projecter man</label
        >
        <label
          ><input
            name="prefer"
            value="forum"
            type="checkbox"
            class="input-checkbox"
          />Social media manager</label
        >
      </div>
      <div class="form-group">
        <p>Put your comments or suggestions?</p>
        <textarea
          id="comments"
          class="input-textarea"
          name="comment"
          placeholder="Enter your comment here..."
        ></textarea>
      </div>

      <div class="form-group">
        <button type="submit" id="submit" class="submit-button">
          DONE
        </button>
      </div>
    </form>
  </div>
</body>

MichaelKentBurns commented 2 months ago

When you have completed an issue, and have committed the changes, you should push them all to your repository (I see you have been doing that), and you should then add a comment to the issue to indicate that it is complete.

When you complete an issue, you should make some comments about how that part of your project was. 1) Any problems you encountered, what you did to over come them.
2) If you have not yet overcome the problems, add a comment explaining the problem, what you have tried. 3) Describe what you expected to happen, or what it should look like. 4) Describe what you see, or what behavior seems incorrect.

Those comments will allow your mentor to pay close attention to your problem. He will be able to clone your repository to his machine and try it out for himself. If he has suggestions or solutions he will add a comment so that you can try it out.

Your repository, and the issues and comments on that issue should be a way for you and your mentor to work together closely. You will learn from his advice and he will learn how you work and what you are learning.

You are doing well, and I can see that Philemon is monitoring your work closely.
You are now working as part of a professional team!

Congratulations! And keep up the good work.

ElGautinho commented 2 months ago

Thank you for your kind words of encouragement! I will continue to strive for excellence in my work.