Skip to main content

Beginning bio for website

Hello, this is the online portfolio for Sophie Husteden. I am a first year Digital Media student at the University of Salford. Since starting the course, we have done six different modules, and learnt lots of new skills and how to use different software’s, such as XD, Aftereffects and Brackets. Overall, my favourite modules have been the KidsCan brief and the Dichotomies brief, this is because KidsCan is the closest to what I want to do for a career in the future, and I liked the contradictions brief as it was very interesting to think about. I also really liked learning how to code as it’s something new that I hadn’t tried before. My least favourite modules have been the App brief and Creative Play, this is due to the fact that I don’t really want to make apps for any future careers, so I didn’t find it interesting, and I didn’t like Creative Play because of the Animation course. 

Comments

Popular posts from this blog

Week 2

Notes Footers are like links to something, such as URLs or emails. <Li> </Li> is an unordered list.  A basic menu would have some simple CSS rules, i.e stylings. { = section so have things separated like 'divs', shows when an area starts and finishes.  Dropdown menu-  Have links added- items and subitems, added next to items.  Use CSS to hide the items until you scroll over them.  All boxes are relative and try to stay on line.  You can animate things using CSS.  THERE IS ONLY ONE HEAD AND BODY, if you have extras then it confuses the program.  Codes To start we created a new webpage, with a CSS and NAV folder inside of it. Then we have to put the code for the index.html page to work on: <! DOCTYPE html > <!-- Standard html5 blank template --> < html > < head > < title ></ title > </ head > < body > <!-- all content goes here. --> ...

Screenshots of website

Week 1- Part 2

Codes: -  This will create a basic webpage with some text on it: You need to have a folder for the webpage, with one folder called CSS, and one the name Index (or something similar) <!DOCTYPE html>                                               <html>         <head>                 <title>Web Demo/title>        </head>        <body>                Hello World!        </body> </html> The body tag means the text on the page, so any text they would want on the webpage they should put it where 'Hello World!' is. -  This will change the styles of the webpage that you created in the last tutorial thing. Within the CSS folder make a file called...