Tuesday, 26 July 2016

Blog Task 14.3

The Computer that I use at home is one that is pointed towards gaming and/or video image editing. I originally got it from Cello Technologies in early 2013 and have essentially been upgrading it since with my savings.
The current specs of the system are listed here:
CPU: Intel i7 4790 @ 3.6 GHz Turboboosted 
CPU Cooler: Corsair H100i GTX Edition 
Motherboard: Gigabyte Z97 Gaming-3 ATX Motherboard 
GPU: GIGABYTE GeForce GTX 770 OC Edition 4GB GDDR5 
PSU: FSP 750W Gold Rating PSU 
RAM: 16GB 1866MHz Kingston HyperX DDR3 RAM 
Storage: 120GB Corsair SSD 
Storage: 1TB Western Digital HDD Black 
Storage: 1TB Western Digital HDD Green 
Case: CM Storm Trooper Full Tower Case. 
I mainly use it for level design/creation for the Source Engine, as well as video editing and gaming. One of the limitations it has now is the GPU is becoming old and starts to overheat after a while, causing artefacts. 

Blog Task 13

Exercise 1
<!DOCTYPE html>
<html>
<body>

<p title="About W3Schools">W3Schools is a web developer's site that's useful for learning HTML and other languages</p>

</body>

</html>
<!-- I extended the paragraph to include that the site is helpful for learning HTML -->

Exercise 2
<!DOCTYPE html>
<html>
<body>

<img src="w3schools.jpg" alt="w3schoolslogo" width="250" height="400">

</body>
</html>
<!-- I added the alt attribute with the name of the image -->

Exercise 3
<!DOCTYPE html>
<html>
<body>

<a href="http://www.w3schools.com"> Link to the W3Schools webpage </a>

</body>
</html>
<!-- I changed the text to say where the link goes -->

Exercise 4
<!DOCTYPE html>
<html>
<body>

<a href="http://www.wwf.org.uk">WWF Homepage</a>

</body>
</html>
<!-- I changed the text to say where the link goes again -->

Exercise 5
<!DOCTYPE html>
<html>
<body>

<img src="w3schools.jpg" alt="w3schools.com" width="135" height="50">

</body>
</html>
<!-- I changed the src attribute to have the correct image file -->

Monday, 25 July 2016

Blog Tasks 5-12

Task 5
HTML stands for HyperText Markup Language

Example of HTML:
<html>
<body>

<h1>Heading Size 1</h1>
<p><b>A Bold line of text</b></p>
</body>
</html>

Task 6 Definitions:
Tag: A tag is a way HTML finds out how to format the document, a tag normally comes in pairs such as "<p></p>"
Element: an Element in an HTML document is an individual component of the document. An Element can also be modified by Attributes. An Example would be "<p>The Text or other content inside the tags is known as the element</p>"
Attribute: An Attribute is a modifier of an HTML Element type. For example, "<tag attribute="value">text or other content to be modified by defined tag</tag>>"

Task 7
<p> Hello World! </p>
This text when within an HTML document creates a new paragraph that contains the text "Hello World!"

Task 8-9
<html>
  <head>
    <title>My First Page</title>
  </head>
</html>

When inputted into Notepad++ then ran as an HTML file, the text "My First Page" appears up in the tab area.

Edited Version:
<html>
  <head>
    <title>Michael Alexander Lagocki</title>
  </head>

</html>

Task 10
<!DOCTYPE html>
<html>
<body>

<h1>Heading 1</h1>

<p>A paragraph created for the HTML Blog</p>
<p>created by Michael Lagocki</p>

</body>
</html>

Task 11
<!DOCTYPE html>
<html>
<body>

<h1>This is a modified heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3 it's getting smaller</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This was edited by Michael</h6>

</body>

</html>

Task 12
<!DOCTYPE html>
<html>
<body>

<p>This is a modified paragraph.</p>
<p>Edited by Michael Lagocki</p>
<p>For task 12</p>

</body>
</html>

Tuesday, 19 July 2016

Blog Task 4

http://www.w3schools.com/html/default.asp
For use to learn HTML

Blog Task 3

In regards to the PowerPoint about Classroom Protocols, I think that the idea of listening when people are talking, removing distractions and showing respect are the most important.
The idea of respect links into the other protocols as listening to the person talking in front of the class and not distracting others is a sign of respect to the lecturer.

Blog Task 1

Hi There!

My Name is Michael Lagocki, I'm 18 years old, and I am passionate about computers/technology.