School of Art, Design and Art History / James Madison University
Web Design, Prof. Jun Bum Shin
Monday, November 17, 2014
Wednesday, November 12, 2014
favicon
A favicon /ˈfævɪkɒn/ (short for Favorite icon), also known as a shortcut icon, Web site icon, tab icon or bookmark icon, is a file containing one or more[1] small icons, most commonly 16×16 pixels, associated with a particular Web site or Web page.[1][2] A web designer can create such an icon and install it into a Web site (or Web page) by several means, and graphical web browsers will then make use of it.[3]
Resource: http://en.wikipedia.org/wiki/Favicon
http://tools.dynamicdrive.com/favicon/#.U1gUqV74Jvc
http://favicon.htmlkit.com/favicon/
Not Working on SAFARI?
http://tools.dynamicdrive.com/favicon/#.U1gUqV74Jvc
http://favicon.htmlkit.com/favicon/
Not Working on SAFARI?
1. Generated 16 x 16 .PNG from Photoshop (8 bits per channel RGB - no alpha) named "favicon.png"
2. Changed file extension to .ICO and put it in the same directory of my site that the index.html file is in.
3. Entered in the following code:
<link rel="shortcut icon" href="favicon.ico" />
Worked in Firefox and Chrome, but not in Safari. Even after clearing chache.
4. Changed the name of the favicon (for example "awsomefavicon.ico") and adjusted the code.
<link rel="shortcut icon" href="awesomefavicon.ico" />
Monday, November 3, 2014
Assignments by 11.05
1. Design full pages of your website
2. Revised Flowchart
3. HTML exercise: 2 pages link, add images, add text, and add slideshow.
SLIDESHOW
http://codepen.io/leemark/pen/DLgbr
2. Revised Flowchart
3. HTML exercise: 2 pages link, add images, add text, and add slideshow.
SLIDESHOW
http://codepen.io/leemark/pen/DLgbr
Forms: Contact
HTML
<form action="php/mail.php" method="post" >
<input name="name" type="text" class="textbox" id="name" placeholder="Name" size="30">
<input name="email"type="text" class="textbox" id="email" placeholder="Email" size="30">
<textarea name="message" cols="70" rows="16" class="messagebox" id="message" placeholder="Message"></textarea>
<input class="button" type="submit" value="Submit" name="submit"/>
</form>
<?php
$Name = $_POST['name'];
$Message = $_POST['message'];
$Email = $_POST['email'];
$Body = "From: $Name\nEmail: $Email\nMessage: $Message";
$Recipient = 'admin@myweb.com';
$Subject = 'Your Name';
$Headers = "From: <$Email>";
mail($Recipient,$Subject,$Body,$Headers,"-f $Email") or die('Error!');
header('Location: http://www.myweb.com/contact.html');
?>
Codepen
MENUS
Centered Logo+Menu:
http://codepen.io/wolfcry911/pen/HyLdg
http://codepen.io/svendsen/pen/hHzCo
Simple Transition:
http://codepen.io/rafaelrinaldi/pen/DojpK
Centered Menu:
http://codepen.io/ToJa92/pen/fwdGh
SLIDESHOW
http://codepen.io/leemark/pen/DLgbr
Centered Logo+Menu:
http://codepen.io/wolfcry911/pen/HyLdg
http://codepen.io/svendsen/pen/hHzCo
Simple Transition:
http://codepen.io/rafaelrinaldi/pen/DojpK
Centered Menu:
http://codepen.io/ToJa92/pen/fwdGh
SLIDESHOW
http://codepen.io/leemark/pen/DLgbr
Saturday, November 1, 2014
Web Fonts
Web Font Choice {html&css: p. 277~278}
www.fontex.org
www.fontsquirrel.com
http://www.fontsquirrel.com/tools/webfont-generator
www.openfontlibrary.org
------------------------------------
Google Web Fonts: www.google.com/webfonts
Google Developer: https://developers.google.com/webfonts/docs/getting_started
A Designer's guide to Webfonts:
http://www.fontshop.com/education/pdf/webfonts.pdf
------------------------------------
> Example
Textbook: Chap.12 (p.277)
CSS:
The fonts offered by Typekit, fonts.com, or high end foundries may be of a higher quality in terms of design and practicality, but the barrier for using Google web fonts is much lower. You don’t even need a Google account to sign up.
www.fontex.org
www.fontsquirrel.com
http://www.fontsquirrel.com/tools/webfont-generator
www.openfontlibrary.org
------------------------------------
Google Web Fonts: www.google.com/webfonts
Google Developer: https://developers.google.com/webfonts/docs/getting_started
A Designer's guide to Webfonts:
http://www.fontshop.com/education/pdf/webfonts.pdf
------------------------------------
> Example
Textbook: Chap.12 (p.277)
CSS:
@font-face {
font-family: 'ChunkFiveRegular';
src: url('fonts/chunkfive.eot');}
h1, h2 {
font-family: ChunkFiveRegular, Georgia, serif;}
HTML:
<h1>Briards</h1>
<p>The brie is a large breed of dog traditionally used as a herder and guardian of sheep.</p> <h2>Breed History</h2> <p>The briard, which is believed to have originated in France, has been bred for centuries to herd and to protect sheep.</p>----------
Quick Tip: Instantly Preview Google Fonts in Chrome
Jim Bosveld on Oct 26th 2012 with 7 Comments
Tutorial Details
- Screencast duration: 2 mins
- Difficulty: Beginner
- Topic: Typography
View post on Tuts+ BetaTuts+ Beta is an optimized, mobile-friendly and easy-to-read version of the Tuts+ network.
With the release of the Typecast public beta comes the next step in the wonderful evolution of web fonts. One of (if not the) biggest web font service is Google web fonts. With over 500 font families that can be used without cost or limitation it offers a truly remarkable service. Let’s look at a quick way of previewing Google fonts, without having to actually implement them in your projects.
The fonts offered by Typekit, fonts.com, or high end foundries may be of a higher quality in terms of design and practicality, but the barrier for using Google web fonts is much lower. You don’t even need a Google account to sign up.
One problem with using web fonts however, is testing different examples in your own projects. Whereas you can just set a different font stack with regular fonts, a web font requires a snippet of javascript (or an additional stylesheet) to load the assets. This can be a pain if you want to try various different web fonts in quick succession.
Enter the Google Font Previewer by Pamela Fox! A remarkable little Chrome extension that lets you preview all Google web fonts, on any site. All it asks of you is the css selector for the block of text you want to preview.
Watch the Quick Tip
The extension also lets you set the text size, text-shadow and some other transformations in the preview. It would be great if you could select other web font services as well, just like you can in Typecast, but for now this is a fun and practical little alternative.
Wednesday, October 29, 2014
Assignments by Nov. 3rd.
1. Developing flowchart
2. Revised Computer Sketches: 2 Pages for each x 3 Concepts = total 6 pages of layouts
3. Exercise layout design (class hand-out): Add images into HTML
4. Working on your logo
5. Happy Halloween!
2. Revised Computer Sketches: 2 Pages for each x 3 Concepts = total 6 pages of layouts
3. Exercise layout design (class hand-out): Add images into HTML
4. Working on your logo
5. Happy Halloween!
Friday, October 24, 2014
adding (link) JavaScript
- EXTRNAL:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script src="js/menu.js">
</script>
</body>
</html>
- INTERNAL
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script>
jQuery(document).ready(function($) {
$('a').smoothScroll({
speed: 1000,
easing: 'easeInOutCubic'
});
</script>
</body>
</html>
Thursday, October 23, 2014
Web Design Trends links:
Responsive Web Design— ARCTICAScrolling Over Clicking — OPTIC
Large, Beautiful Background Image & Videos — Crop the Block
Flat Design is Growing Up — 1 / 2 / 3 / 4
Ghost Button — Campus Bubble / Care Center
Bigger Emphasis on Typography — Get Going Today
Card Design — Google Plus
Flat Design is Growing Up (or, The Rise of Material Design?) - Google Design
Interactive Storytelling - the guardian
Large, Beautiful Background Image & Videos — Crop the Block
Flat Design is Growing Up — 1 / 2 / 3 / 4
Ghost Button — Campus Bubble / Care Center
Bigger Emphasis on Typography — Get Going Today
Card Design — Google Plus
Flat Design is Growing Up (or, The Rise of Material Design?) - Google Design
Interactive Storytelling - the guardian
Readings : Web Design Trends
Web Design Trends To Look Out For In 2015
http://www.elegantthemes.com/blog/resources/web-design-trends-to-look-out-for-in-2015
7 Tips to Speed Up Responsive Websites
http://spyrestudios.com/7-tips-to-speed-up-responsive-websites/#jPfIYg5ufPMSTkTM.99
Why responsive websites are a must have:
http://www.bizcommunity.com/Article/196/13/118096.html
http://www.elegantthemes.com/blog/resources/web-design-trends-to-look-out-for-in-2015
7 Tips to Speed Up Responsive Websites
http://spyrestudios.com/7-tips-to-speed-up-responsive-websites/#jPfIYg5ufPMSTkTM.99
Why responsive websites are a must have:
http://www.bizcommunity.com/Article/196/13/118096.html
Monday, October 20, 2014
Monday, October 13, 2014
Free Images
1. LITTLE VISUALS ( littlevisuals.co/ )
2. UNSPLASH ( unsplash.com/ )
3. Picjumbo ( picjumbo.com/ )
4.GRATISOGRAPHY ( gratisography.com/ )
5.FREE REFE MOBILE PHOTO ( getrefe.tumblr.com/ )
6. Splitshire ( splitshire.com/ )
7. New Old Stock ( nos.twnsnd.co/ )
8. Function free photos ( wefunction.com/category/free-photos/ )
9. Superfamous ( superfamous.com/ )
10. IM Free (http://www.imcreator.com/free )
Assignment by Oct. 15
1. Reading Assignment:
HTML & CSS - Chapter 15, Chapter 18.
2. Apply your design into HTML&CSS Layout:
HTML & CSS - Chapter 15, Chapter 18.
2. Apply your design into HTML&CSS Layout:
- 3 pages of HTML&CSS (links to each pages)
- Two different Style of layout (Using CSS)
Wednesday, October 8, 2014
Assignment by Oct. 13
1. design all pages of your website.
2. reading respose: ch. 10~13
3. exercise with Dreamweaver template
2. reading respose: ch. 10~13
3. exercise with Dreamweaver template
Tuesday, October 7, 2014
CSS: display, positioning, float, and align
DISPLAY
http://www.w3schools.com/css/css_display_visibility.asp
POSITIONING
http://www.w3schools.com/css/css_positioning.asp
FLOAT
http://www.w3schools.com/css/css_float.asp
ALIGN
http://www.w3schools.com/css/css_align.asp
http://www.w3schools.com/css/css_display_visibility.asp
POSITIONING
http://www.w3schools.com/css/css_positioning.asp
FLOAT
http://www.w3schools.com/css/css_float.asp
ALIGN
http://www.w3schools.com/css/css_align.asp
CSS: list, link, and navigation bar
LIST:
http://www.w3schools.com/css/css_list.asp
LINK:
http://www.w3schools.com/css/css_link.asp
NAVIGATION BAR
http://www.w3schools.com/css/css_navbar.asp
http://www.w3schools.com/css/css_list.asp
LINK:
http://www.w3schools.com/css/css_link.asp
NAVIGATION BAR
http://www.w3schools.com/css/css_navbar.asp
Monday, October 6, 2014
Assignments by Oct. 08
1. Design Development: 3 pages for 2 designs = total 6 pages.
2. Reading Response Paper: 2 pages of writing (Don't Make Me Think, Chapter 6~9)
Subscribe to:
Posts (Atom)


