Posts

Showing posts from October, 2018

Lab #1 Reflection Journal

Image
Web Client Programming             In this lab, we were tasked to create a new homepage for our WCP portfolio. The homepage was created using basic HTML and CSS. It included a paragraph and a picture of ourselves. And we designed it to our liking such as mine had a navigation bar so people are able to navigate through my page without pressing the back button.             I completed the lab using Dreamweaver. This lab will help me as a web designer because it makes it easier for people to locate the work I create through my portfolio whether it be Digital Design, Web Client Programming, Visual Design.

WBL Workshop #1

Web Client Programming             Today instead or normal class we had our first WBL Workshop of Senior Year. We basically discussed what are the requirements to pass with a CTE Diploma such as having completed an internship, as well as doing 30 hours of community service. During the workshop internship opportunities were also discussed for those who haven't completed the required internship needed to graduate with a CTE diploma. The internships that were discussed were ISP, Future and Options and some others, luckily I completed my internship last year through CTESS and it was quite an experience

Lab #2 Reflection Journal

Image
Web Client Programming             In this lab we went over JavaScript that we learned in the past in order to refresh our memories on the topic and prepare us to use it more in our labs. The first thing we did in the lab was create text using JavaScript by typing document.write. Another way to create text inside an HTML document is by using innerHTML which allows the user to replace the text that is already in a paragraph tag or an h1-h6, etc.. for this lab we used the p tag. Finally we also created text within the console log which only web developers can view.             After creating the text inside the HTML document we then moved on to alerts. Alerts pop up in the users browsers either to give them information of ask questions. We utilized several alerts such as prompt which would ask the user a question and ask for an answer in return we also used confirm which would also give the user a question in which he/she ca ...

Lab #3 Reflection Journal

Image
Web Client Programming             In this lab we were assigned 5 exercises using jQuery in provided HTML documents. Each of the HTML documents provided instructions on how to fix the problem with it using different techniques of jQuery. This was very exciting because this is the first time we are using jQuery in class and this lab gives us an insight in the things that are to come in future labs and projects that involve jQuery. The first exercise we had to change the color of the text by what was imputed in the text box. This required the use of a function whenever the button was clicked upon. The second exercise was about changing the CSS of object using jQuery. With these first two exercises we are learning how to change objects within HTML documents by utilizing jQuery.             The third exercise is creating a User Interface of a page using jQuery. In order to do this we had to first use a custom function which is ...

Lab #4 Reflection Journal

Image
Web Client Programming             In this lab we created a ninja containing many properties of itself such as its name, gender, belt color, etc.. In order to create these properties and add them to the variable which is ninja we used objects. Objects are basically a way to give different properties to your variable and later on you can call the different properties by just using the syntax: Object_name.property_name; After creating my ninja and giving it properties using objects I moved on to make the ninja do some specific actions by using functions.             After creating the ninja I then created 3 buttons each one assigned a different function in the onClick tag. Instead of creating a regular function for our ninja's buttons we had to create the functions inside the objects this is known as the concept called methods. By utilizing methods I was able to create functions that allow the ninja to do things such as kick,...