Skip to content

Commit b53524d

Browse files
author
Rachel Evans
committed
Change tutorials links to https and new DNS name
1 parent 8835767 commit b53524d

File tree

13 files changed

+24
-24
lines changed

13 files changed

+24
-24
lines changed

html/lesson1/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In this tutorial we are going to look at:
1818

1919
### Goal
2020

21-
By the end of this tutorial you will have built [this webpage.](http://codebar.github.io/tutorials/html/lesson1/example.html "I love owls")
21+
By the end of this tutorial you will have built [this webpage.](https://tutorials.codebar.io/html/lesson1/example.html "I love owls")
2222

2323
#### What is HTML?
2424

html/lesson2/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ In this tutorial we are going to look at:
1919

2020
### Goal
2121

22-
Today we will be styling [this page](https://github.com/codebar/tutorials/blob/master/html/lesson2/example.html) so that it looks [like this example](http://codebar.github.io/tutorials/html/lesson2/example.html).
22+
Today we will be styling [this page](https://github.com/codebar/tutorials/blob/master/html/lesson2/example.html) so that it looks [like this example](https://tutorials.codebar.io/html/lesson2/example.html).
2323

2424
### Required files
2525

html/lesson3/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ We will also be explaining in more detail elements that we mentioned in the prev
2020

2121
### Goal
2222

23-
The page we will be building will look similar to this [example page](http://codebar.github.io/tutorials/html/lesson3/example.html "Ada Lovelace").
23+
The page we will be building will look similar to this [example page](https://tutorials.codebar.io/html/lesson3/example.html "Ada Lovelace").
2424

2525
### Required files
2626

@@ -586,7 +586,7 @@ footer a {
586586
587587
### Bonus - Inspector
588588

589-
Have a look at the [example page](http://codebar.github.io/tutorials/html/lesson3/example.html "Ada Lovelace"). The heading and body of the page have some differences from the page we just created.
589+
Have a look at the [example page](https://tutorials.codebar.io/html/lesson3/example.html "Ada Lovelace"). The heading and body of the page have some differences from the page we just created.
590590

591591
Use the inspector to have a look at `<body>` and `<h1>` and apply these changes to your page.
592592

html/lesson4/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Today we will be building a website and learning more about CSS layouts and form
1212

1313
### Goal
1414

15-
The page we will build will look similar to this [example page]( http://codebar.github.io/tutorials/html/lesson4/example.html "Grace Hopper")
15+
The page we will build will look similar to this [example page]( https://tutorials.codebar.io/html/lesson4/example.html "Grace Hopper")
1616

1717
### Required files
1818

@@ -228,7 +228,7 @@ The text is now really hard to see. Change the color of the link...
228228
}
229229
```
230230

231-
> Do you remember what **:hover** does? Have a quick look at **Pseudo classes** in the [previous tutorial](http://codebar.github.io/tutorials/html/lesson3/tutorial.html) to refresh your memory.
231+
> Do you remember what **:hover** does? Have a quick look at **Pseudo classes** in the [previous tutorial](https://tutorials.codebar.io/html/lesson3/tutorial.html) to refresh your memory.
232232
233233
## Content
234234

html/lesson5/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Today we will be building a website and will focus more on HTML5 and CSS3 specif
1212

1313
### Goal
1414

15-
The page we will build will look similar to this [example page](http://codebar.github.io/tutorials/html/lesson5/example.html "Anita Borg")
15+
The page we will build will look similar to this [example page](https://tutorials.codebar.io/html/lesson5/example.html "Anita Borg")
1616

1717
### Required files
1818

html/lesson6/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ <h3>Grace Hopper on Letterman</h3>
110110

111111
<section>
112112
<h3>Articles</h3>
113-
<a href="http://codebar.github.io/tutorials/html/lesson3/example.html">Hi I'm Ada Lovelace</a>
113+
<a href="https://tutorials.codebar.io/html/lesson3/example.html">Hi I'm Ada Lovelace</a>
114114
<br/>
115-
<a href="http://codebar.github.io/tutorials/html/lesson4/example.html">Grace Hopper</a>
115+
<a href="https://tutorials.codebar.io/html/lesson4/example.html">Grace Hopper</a>
116116
<br/>
117-
<a href="http://codebar.github.io/tutorials/html/lesson4/example.html">Anita Borg - Where are we and where are we going.</a>
117+
<a href="https://tutorials.codebar.io/html/lesson4/example.html">Anita Borg - Where are we and where are we going.</a>
118118
</section>
119119
</section>
120120

@@ -124,4 +124,4 @@ <h3>Articles</h3>
124124
</address>
125125
</footer>
126126
</body>
127-
</html>
127+
</html>

html/lesson6/tutorial.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ We can use other attributes to control our media plays. To make music start play
9898

9999
Today, we will be following a different approach to building our page.
100100

101-
You now know enough to build a complete web page from scratch. Open [our example page](http://codebar.github.io/tutorials/html/lesson6/index.html "Women in Programming"), then try to build it yourself. You should use the HTML5 elements we mentioned today and what you have learned in the previous tutorials.
101+
You now know enough to build a complete web page from scratch. Open [our example page](https://tutorials.codebar.io/html/lesson6/index.html "Women in Programming"), then try to build it yourself. You should use the HTML5 elements we mentioned today and what you have learned in the previous tutorials.
102102

103103
### But before you begin...
104104

@@ -109,14 +109,14 @@ Download the files required to begin working through the tutorial from [here](ht
109109
### Links and resources you will need
110110

111111
```
112-
Hi I'm Ada Lovelace - http://codebar.github.io/tutorials/html/lesson3/example.html
113-
Grace Hopper - http://codebar.github.io/tutorials/html/lesson4/example.html
114-
Anita Borg - Where are we and where are we going. - http://codebar.github.io/tutorials/html/lesson5/example.html
115-
Grace Hopper on Letterman - http://codebar.github.io/tutorials/html/lesson6/assets/images/grace-letterman.mp4
112+
Hi I'm Ada Lovelace - https://tutorials.codebar.io/html/lesson3/example.html
113+
Grace Hopper - https://tutorials.codebar.io/html/lesson4/example.html
114+
Anita Borg - Where are we and where are we going. - https://tutorials.codebar.io/html/lesson5/example.html
115+
Grace Hopper on Letterman - https://tutorials.codebar.io/html/lesson6/assets/images/grace-letterman.mp4
116116
117117
```
118118

119-
Also, don't forget to refer to the [previous tutorials](http://codebar.github.io/tutorials)
119+
Also, don't forget to refer to the [previous tutorials](https://tutorials.codebar.io/)
120120

121121
> Don't be afraid to ask for help from your coach.
122122

html/lesson7/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Today we will be building a responsive website and learning about CSS media quer
1212

1313
### Goal
1414

15-
The page we will build will look similar to this [example page]( http://codebar.github.io/tutorials/html/lesson7/example.html "Grace Hopper")
15+
The page we will build will look similar to this [example page]( https://tutorials.codebar.io/html/lesson7/example.html "Grace Hopper")
1616

1717
### Required files
1818

js/lesson4/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If you are on a mac or a linux/unix machine, you can access the API using curl:
4141

4242
> Paste the following command into Terminal, which you can find in Finder - first go into the Applications folder, then Utilities.
4343
44-
Here is an example of the **GET** requests issued by the [wishlist tutorial](http://codebar.github.io/tutorials/examples/wishlist/index.html).
44+
Here is an example of the **GET** requests issued by the [wishlist tutorial](https://tutorials.codebar.io/examples/wishlist/index.html).
4545

4646
\*You can view any requests issued by a website by going to the Network (or Net) tab.
4747

js/lesson8/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Another important thing is to remember to commit your changes often and keep thi
7373

7474
This way, if something goes wrong and things stop working you can always revert your local changes and start over again.
7575

76-
When working with someone else it's also nice to do your work in branches so you can open pull requests and the other person can have a look at your changes before they are merged into the main repository. We briefly discussed creating branches in the [introduction to version control tutorial](http://codebar.github.io/tutorials/version-control/introduction/tutorial.html). Try to give your branches meaningful names and when they are merged into the main **master** branch, don't forget to update your local copy.
76+
When working with someone else it's also nice to do your work in branches so you can open pull requests and the other person can have a look at your changes before they are merged into the main repository. We briefly discussed creating branches in the [introduction to version control tutorial](https://tutorials.codebar.io/version-control/introduction/tutorial.html). Try to give your branches meaningful names and when they are merged into the main **master** branch, don't forget to update your local copy.
7777

7878
## Useful APIs
7979

@@ -90,7 +90,7 @@ Some popular API's that you may find useful
9090

9191
- [Instagram](https://instagram.com/developer/endpoints/) Search and retrieve images from Instagram.
9292

93-
> A lot of these API's require registering your application before you are able to use them, and some may take a while to respond. You can always read up and use fake data (by creating your own JSON objects, like we learned on the [Beginning JavaScript tutorial](http://codebar.github.io/tutorials/js/lesson2/tutorial.html).
93+
> A lot of these API's require registering your application before you are able to use them, and some may take a while to respond. You can always read up and use fake data (by creating your own JSON objects, like we learned on the [Beginning JavaScript tutorial](https://tutorials.codebar.io/js/lesson2/tutorial.html).
9494
9595

9696
---

0 commit comments

Comments
 (0)