Skip to content

Instantly share code, notes, and snippets.

Session 4 Practice Tasks

The assignments listed here should take you between 1.5 and 2 total hours.

To start this assignment:

  1. Click the button in the upper right-hand corner that says Fork. This is now your copy of the document.
  2. Click the Edit button when you're ready to start adding your answers.
  3. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.
# Turing Career Development - Mod 0 Capstone
## Developing Mindsets to Succeed
_Our **mission** is to unlock human potential by training a diverse, inclusive student body to succeed in high-fulfillment technical careers._
When you're transitioning careers, often many other aspects of your approach to work and life undergo a transition as well. Turing aims to be a place where you can work through these transitions successfully. While enrolled at Turing and during your subsequent job search, you'll be provided with tools and strategies to develop the professional skills necessary to enter a new career as a software developer.
The pre-work for career development is focused on introducing you to a set of mindsets that we at Turing believe will make you a successful programmer. These mindsets are:
* Agency: Taking initiative and ownership over your learning and work
* Empathy: Understanding and sharing others' emotions in order to relate to them
@MattTuring
MattTuring / MattTowarnicky-mod-0-capstone.md
Last active July 29, 2019 18:00
MattTowarnicky-mod-0-capstone.md
  1. On a website, what is the purpose of HTML code?

HTML describes the structure of a page.

  1. What is the difference between an element and a tag?

An Element is the structure of the site between the opening and closing tags. Example elements are p, h1, and table. The show what will go in that section. An element is wrapped by an opening and closing tag indicating where an element starts and stops.

  1. Why do we use attributes in HTML elements?

It supplies additional information about an element, lang is an example attribute and the value is indicated between a ="" in this case fr, en-us, or etc.

4. Describe the purpose of the head, title, and body HTML elements. These indicate how things are interpreted and displayed by the browser. Head the top of the pages header. Title the title of the page (outside of the browser window), and HTML everything in these tags is HTML unless otherwise specified (scripts).