Code Fellows courses Notes
This project is maintained by QamarAlkhatib
this chapter is talking about Links and how to write them in HTML, since we can use links to link the page with other sites or pages.
this is the basic syntax for Links in HTML:
<a href="http://www.google.com">google</a>
Also, talk about how to Opening Links in a New Window, and this is the syntax:
<a href="http://www.google.com" target="_blank">
This chapter is talk about Building blocks, and about block-level elements and we can use these tags (<h1>, <p>, <ul> <li>) with a new line.
and the other one is the inline elements, and we can use these tags **(, , )** and its flow in between surrounding text.
Also, it talk about Controlling the Position of Elements, and we have these types:
Also its talks about screen size and resolution, page screen. And finally, its talk about different types of layout:
function myName(){
document.write("Qamar);
}
and we call it by its name.
var car = {
type: 'toyota'
color: 'blue'
seats: '2'
}
this article is talking about pair programming and how does its works. pair programming is the practice of two developers sharing a single workstation to interactively tackle a coding task together. and it’s advantages, since its greater efficiency, Engaged collaboration, Learning from fellow students, Social skills, Job interview readiness, Work environment readiness.