Showing posts with label face. Show all posts
Showing posts with label face. Show all posts

Friday, August 28, 2015

How to Host a Homecoming Party (9 Steps)


Learn when homecoming weekend is and determine when you want to host your homecoming party. Homecoming parties can be hosted before or after the big game.
Determine what type of homecoming party you want to have. You can host a homecoming tailgate party, a pre-homecoming game party, a post-game party or a themed homecoming party.
Create your invitations. Use school colors, insignias and mascots in the design of your invitations. Provide all of the information that your guests will need to know when the party is, where the party will be held and what they can expect at the party. For example, if you are hosting a fancy dress homecoming party then your invitation will want to include guest requirements such as 'face paint or body paint required' or 'school colors required for entry.' Have fun with these invitations as they will set the tone for the party.
Buy your food, drinks and decorations well in advance of your party, especially if homecoming is a college or university event. Prep appetizers and marinade meat the day before your party to reduce how much you have to do on party day.
Set up your homecoming party about an hour before you expect your first guests to arrive. There are always early birds to contend with, and you want to greet each guest with enthusiasm.
Dress up for your homecoming party. The host should reflect the theme, tone and spirit of the party.
Greet each guest with enthusiasm and welcome them to your homecoming party. Let them know where they can find food, drinks and party favors. If there will be party games inform your guests when they first arrive to prepare them for the fun ahead.
Lead school cheers, fun homecoming party games and introduce people who don't know one another as the party progresses. Replenish the food and drink supplies as they dwindle. Check with your guests periodically to see if they need anything.
Offer doggy bags and party treat bags to your guests as they leave. Keep an up-beat spirit as you thank your guests for coming. After the last guest has gone you can sit down and relax for a minute before tackling the clean-up.
VPS Hosting

Tuesday, August 25, 2015

How to Embed TTF Fonts in CSS (4 Steps)


Open the HTML file for the Web page where you wish to display the embedded font. For websites or templates using a separate header file, open that instead. Use a code-editing program such as Notepad++, jEdit or BBEdit. Look for the following line of code in the top of your HTML file:
Look at the name of the .CSS file referenced in the
tag and open that file in your code editor. If you see no
tag, create one and then create a blank .CSS file.
Add the following code at the top of your .CSS file:@font-face {font-family: 'Font Name Here';src: URL('fontfile.ttf') format ('ttf');}Give a font family name to your font. You can use any name, but stick with a name that is easy to type and remember. Type the full or relative path to your .TTF file between the parentheses after 'URL.'
Use the embedded font as you would use a Web-safe font such as Arial, Helvetica or Georgia. Here is an example:h1 {font-family: 'Font Name Here', 'Another Font', generic;}The above code makes all tags use your embedded font. Should the embedded font not work, the browser will use 'Another Font' for level-one headers. In the case 'Another Font' does not exist on the user's computer, the browser goes to the last font. Use a generic family name here such as 'serif' and 'sans-serif.'
Upload your font using an FTP tool. If you do not use FTP, you can also log into your Web hosting control panel and then navigate to your file management tool. Most Web hosts offer this tool, which allows you to upload a few files at a time through your browser.
VPS Hosting