Working with git was new for me. I followed ideally this procedure (In my case, after many trials and tutorings from our instructor, Enrico Bassi, and my course's colleagues, two presentations on Jan 22nd and 27th, 2018 from Fiore Basile, and a conference from Neil Gershenfeld on Jan 24th, 2018 whom I thank all.
$ git config --global user.name "Catherine Blanchard" $ git config —-global user.email "catherine.blanchardx@gmail.com"
$ mkdir myproject $ git init Initialized empty Git repository in /Users/catherine/myproject/.git/
After so many years that people create websites, it is my turn. Before, I used to write on Blogspot or Wordpress, without really learning to code. I am grateful to this course. It is also an opportunity to think about who I am, what I am doing, and where I want to go in the next six months through the Fab Academy 2018 program.
First, I downloaded the Fab Academy Template's zipped file built by Massimo Menichinelli in a file named Fab Academy 2018, then I extracted the compressed files and save them in a file named catherine-blanchard. Then, I downloaded the text editor Brackets, and opened this last file in Brackets, clicking on the right side of my mouse. I could see all the Fab Academy Template's files on the left column of the editor. So , I am ready to modify each file of my future website, save them, and see their previous aspect on my future website, clicking in File, and on Live Preview.
In the meantime, I learnt how to write a HTML/CSS page, thanks to the tutorial found on the website w3schools.com. It took me a long time to try, but i am quite happy of the result.
Here some examples of nested HTML elements, I wrote in the document exercice01.html for this web page: Exercise 01. Principles and Practices, presentations, introductions:
<b>Goals</b>
<p>Goals</p>
<ol type="1">
- <li>Long-term goals</li>
- <li>Medium-term goals</li>
- <li>Short-term goals</li>
- </ol>
- <ul style="list-style-type:circle">
- <li>Co-facilitate relationships between Presencing Institute and FabFoundation;</li>
- <li>Co-facilitate in the evolution of the geografical area of Verona, Italy, as a Fab City.</li>
- </ul>
<a href="https://www.presencing.org/#">Presencing Institute</a>
HTML Images Syntax
"In HTML, images are defined with the <img> tag. The <img> tag is empty, it contains attributes only, and does not have a closing tag. The src attribute specifies the URL (web address) of the image: <img src="url">The alt Attribute
The alt attribute provides an alternate text for an image, if the user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader). The value of the alt attribute should describe the image: In our example <img src="img/Nested_HTML_elements.png" alt="Nested HTML elements"> If a browser cannot find an image, it will display the value of the alt attribute: Example <img src="wrongname.gif" alt="Nested HTML elements"> Note: The alt attribute is required. A web page will not validate correctly without it."Source: w3schools.com
<img src="img/Nested_HTML_elements.png" alt="Nested HTML elements" width="500" height="281">
- <style>
- div {
- text-align: justify;
- }
- </style>