Windows Server 2008 Training - Configuring DNS
Monday, 31 March 2014
MyPublicWiFi: Turn your computer into a WiFi Access Point with Firewall and URL Tracking
Tuesday, 30 July 2013
DOWNLOAD FROM HERE
Magazine, Technology, Fashion all in one WordPress Theme : Nexus by Elegant
Thursday, 25 July 2013
A quick look at the demo for Nexus and you’ll notice a lot of work has been put into the overall structure of front page entries. Rather than a traditional content slider, Nexus has a featured box that is laid out to provide room for a main post, a secondary article, and two featured stories all in one module. Thanks to LightBox effects, any entry within the featured area that is currently being moused over will change its characteristics to display additional information before the reader clicks through.
Mobile View
Nexus has been designed with mobile device users in mind; and will automatically adjust the format of your magazine site’s content to fit all screen sizes. This is highly useful for catering to front-end users who use an iPhone, Blackberry, Samsung Galaxy, iPad, or other handheld device. Best of all, you do not have to perform any additional task in order for this feature to work straight out of the box. All you have to do is upload and activate the Nexus theme to your website and let the framework do the rest.UNLIMITED COLORS, PERPETUAL UPDATES
When you purchase the premium WordPress theme package from Elegant Themes, you’ll gain access to over 80 downloads instantly. This all-inclusive package makes it highly convenient for those who want a cost effective method for maintaining several domains or having a large selection of templates to choose from.The Nexus theme comes with perpetual updates, cross browser compatibility (Firefox, Internet Explorer, Google Chrome, Opera, Safari and Netscape) and unlimited color schemes for getting just the right hexadecimal shade for your site’s image.
Once you have gained access to the Elegant Themes premium download section, simply choose the themes you want to save and then subsequently upload them to your WordPress site via the Appearance > Themes tab on the left-hand Dashboard menu.
DEMO
Travelar WordPress Theme : TravelPress
Wednesday, 24 July 2013
Activate Windows 7 without using activator or Keys
Saturday, 20 July 2013
OK, let’s go how to activate windows 7 Just follow the steps…
STEP 1: Click on Start Menu type CMD and Right click on it and select Run as Administrator
STEP 2: Then the Command Prompt opens With Administrator Privileges.
STEP 3:Type SLMGR -REARM and press Enter.
STEP 4: Then you will get a message as successful and Restart your System.
STEP 5: Now Restart your computer.
How can check Windows Version ?
Friday, 19 July 2013
It is very simple by using Winver Command, Open Run Dialog box by using Win+R and type “Winver” there without quotes. This will bring a Windows which has OS details such as Windows details.
Alternatively you can also use the Command prompt to find the information. Type “Winver” in command prompt. It would display all details in command prompt.
Assign Keyboard Shortcuts for Applications in Windows 7
To create Shortcut key for any application in Windows 7:
STEP 1 : Right-click the program icon and select Properties.
STEP 2 : Select the Shortcut tab
STEP 3 : Click in Shortcut key textbox
STEP 4 : Enter the keyboard shortcut for that program.
STEP 5 : Press OK to exit.
STEP 6 : Use the Keyboard shortcut combo to launch the application.
you can also remove it by pressing Backspace key from key board.
Internet connecting problem with Android Phone in PC or Android USB Ethernet/RNDIS not Installing well!
Wednesday, 3 July 2013
STEP 1: Download tetherxp.inf file here
STEP 2: Connect your Android Phone using enabled USB tethering on your PC.
STEP 3:Open your device manager [Start -> Run -> devmgmt.msc] .Here you can see your device.
%AndroidDevice% = RNDIS.NT.5.1, USB\VID_04E8&PID_6863
STEP 6: Go back to device manager, Update your driver select ‘ browse for driver software on your computer ‘ , select the location where you have saved the tetherxp.inf file.Finish the installation.
Reference :http://webaegis.in/2013/07/04/internet-connecting-problem-with-android-phone-in-pc-or-android-usb-ethernetrndis-not-installing-well/
Free download WP Advanced Newspaper Theme by Gabfire
Thursday, 27 December 2012
Recipe and Food Blog Theme by ThemeForest – FoodPress
Friday, 7 December 2012
Jobpress Pro v2.0 Theme Pack by DailyWp
JobPress converts the simple WordPress website into a full fledged job portal with tons of features including job and resumes management, job seekers and employers dashboards, featured listings, payment gateway, and much more. JobPress allows you to easily setup a website for your business and begin earning money right away. It is easy to customize and understand, and has been a successful job board model around the world for many years.
DEMO
DOWNLOAD
Some paper pattern for Photoshop and web designing
Monday, 19 November 2012
Button Style for a tag using CSS
Wednesday, 7 November 2012
Now we are creating some buttons using CSS. Here I used CSS to anchor tag to make a button effect. Just copy and paste the script into a notepad and save as webtuter.html.
<style type="text/css">
.button {
font-family: Arial, Helvetica, sans-serif;
padding: 10px 75px;
margin: 0 20px;
text-decoration: none;
font-size: 20px;
font-weight: bold;
color: #FFFFFF;
}
.green {
border: solid 1px #3b7200;
background-color: #88c72a;
}
.violet {
border: solid 1px #720000;
background-color: #6633CC;
}
</style>
<a href="#" class="button green">Green Button</a>
<a href="#" class="button violet">VioletButton</a>
Result
Green Button VioletButtonUnderstanding DOCTYPES and Effects on Browser Layout
Monday, 5 November 2012
HTML 4.01 has three document types: strict, transitional, and frameset. XHTML 1.1 has one document type, but XHTML 1.0 has three document types, like HTML 4.01. Only one document type definition (DTD) appears in the HTML document
DOCTYPE, short for DTD, defines an HTML or XHTML document's building blocks and tells the browsers and validators which version of HTML or XHTML your document is using.
The DOCTYPE declaration must appear at the beginning of every web page document before the html element to ensure your markup and CSS are standards compliant, and that browsers handle the pages based on the appropriate DTDs.
HTML 4.01 Strict DTD:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
HTML 4.01 Transitional DTD:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
HTML 4.01 Frameset DTD:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
" http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd">
XHTML 1.0 Strict DTD:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
XHTML 1.0 Transitional DTD:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
XHTML 1.0 Frameset DTD:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
XHTML 1.1 DTD:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
Here's a basic page with the XHTML 1.1 DTD and the required head, body, and html tags.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>XHTML Document Type Definition (DTD) </title>
</head>
<body>
<p> XHTML requires DOCTYPE, otherwise the pages won't validate and the browsers fall back on quirks mode.</p>
</body>
</html>
CSS Rules
CSS rules are made up of a selector and at least one declaration. A selector is the code that selects the HTML to which you want to apply the style rule. A declaration is made up of at least one CSS property and related property value. CSS properties define the style:
h1 {color: red;}
- Browser style This is the default style sheet within a browser. If you declare no style rules, these defaults are applied.
- User style A user can write a style sheet and make it override any styles you create by changing a setting in the browser.
- Inline style This is style that is used right in the individual element and applied via the style attribute.
- Embedded style This is style that controls one document and is placed inside the style element within the HTML document.
- Linked style This is a style sheet that is linked to an HTML document using the link element in the head of the document.
- Imported style This is similar to linked styles, but it enables you to import styles into a linked style sheet as well as directly into a document.
Inheritance
Inheritance means that styles are inherited from their parent elements. Consider the following:<body>
<h1>My header</h1>
<p>Subsequent Text</p>
</body>
What is CSS Properties
Properties fall between the brackets and their values immediately after the colon, as shown here in a generic example:
selector {
property: value;
}
li {
list-style-type: square;
}
What is CSS Selectors ?
Selectors define which part(s) of your (X)HTML document will be affected by the declarations
you’ve specified. Several types of selectors are available in CSS.
Element Selectors
The most basic of all selectors is the element selector (you may have heard them called tag
selectors). It is simply the name of an (X)HTML element, and not surprisingly it selects all
of those elements in the document. Let’s look an example:
color: blue;
}
h2 {
color: green;
}
We’ve used h1 and h2 as selectors. These are element selectors that select h1 and h2 elements within the (X)HTML document, respectively. Each rule indicates that the declarations in the declaration block should be applied to the selected element. So, in the previous example, all h1 elements in the page would be blue and all h2 elements would be green.
Class Selectors
So far we’ve been assigning styles exclusively to (X)HTML elements, using element selectors. Modern markup often involves the assigning of classes and IDs to elements. Consider the following example:
<p class="warning">I like to work half a day. I don’t care
if it is the first 12 hours or the second 12 hours.</p>
Here, we’ve specified a class of warning to both the h1 element and the p element.
This gives us a hook on which we can hang styles that is independent of the element type. In
CSS, class selectors are indicated by a class name preceded by a period (.). for example:
color: red;
font-weight: bold;
}
We can also join an element selector with a class selector like this
color: red;
font-weight: bold;
}
This rule will assign the red color and bold weight only to paragraph elements that have been
assigned the class warning. It will not apply to other type elements, even if they have the warning class assigned.
Class selectors can also be chained together to target elements that have multiple class
names. For example,
<p class="warning help"> If people knew how hard I had to work to gain my mystery,
it wouldn’t seem wonderful at all.</p>
<p class="help">Michealangelo</p>
A .warning selector will target both the h1 and first p elements, since both have the class
value warning. A .help selector will target both p elements (both have a class value of help).
A chained selector such as .warning.help will select only the first paragraph, since it is the
only element that has both classes (warning and help) assigned to it.
ID Selectors
ID selectors are similar to class selectors, but they are prefaced by a pound sign (#) instead of
a period. ID selectors cannot be chained together, since it is invalid to have more than one ID on a given element in (X)HTML. However, it is possible to chain class selectors and ID selectors,
such as div#main-content.error.So, to select this div element:
<p>This is the main content of the page.</p>
</div>
we would need a selector like this:
width: 400px;
}
or this:
width: 400px;
}
Descendant Selectors
Descendant selectors, sometimes called contextual selectors, allow you to create style rules that
are effective only when an element is the descendant of another one. Descendant selectors are
indicated by a space between two elements.
color: blue;
}
<ul>
<li>Item one</li>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3 <li>
</li>
</ul>
Pseudo-classes
You may want to add style to items that aren't based on elements' name, attributes, or content. This example of pseudo-classes creates rollover effects:a:link {
color: blue;
}
a:visited {
color: purple;
}
a:hover {
color: red;
}
a:active {
color: gray;
}
Pseudo-elements
S a developer can style an item within a web document that's not marked up by elements through the use of pseudo-elements. Pseudo-elements consist of :first-letter, :first-line, :before, and :after.Look into the example for pseudo-element in:first-letter
p:first-letter {
font-size: 200%;
font-weight: bold;
}
Using selectors and properties in CSS
Saturday, 3 November 2012
selector identifies what portion of your web page gets styled. Within a selector are one or more properties and their values. Read more on selecters next post , read more about CSS Selectors
property tells the browser what to change and the value lets the browser know what that change should be.
For example, in the following declaration block example, the selector tells the browser to style the content marked up with the h1 element in the web page to 150% of the default size: read more about CSS Properties
Declarations are always formatted as the property name, followed by a colon, followed by a value, and then a semicolon. It is common convention to put a space after the colon, but this is not necessary. The semicolon is an indication that the declaration is concluded. Declarations are grouped within curly brackets, and the wrapped group is called a declaration block.
h1 {
font-size: 150%;
}
selector {
property: value;}
Property is a font-size, text-decoration, font-color, font-size etc.
Value is a 150%, underline, blue, 90% etc.
Try this Example for selectors and properties
If you do want to embed a style sheet, use code like this in the head element of your (X)HTML document:
<html>
<head>
<title>CSS webaegis.in</title>
// This is how we use CSS inbound
<style type="text/css">
<!--
body {
font-family: verdana, arial, sans-serif;
}
h1 {
font-size: 120%;
}
a {
text-decoration: none;
}
p {
font-size: 90%;
}
-->
</style>
</head>
<body>
<h1>Title of Page</h1>
<p>This is a sample paragraph with a
<a href="http://webaegis.in">link</a>.</p>
</body>
</html>
Basics of CSS
Here's an exercise with the traditional "Hello, world!" example. First, open a text editor or a favorite web page editing tool and enter the following:
<html>
<head>
<title>CSS webaegis.in</title>
<head>
<body>
<p>Hello, world!</p>
</body>
</html>
Now let’s ready use CSS in your HTML, To change the style of the HTML text from to sans serif, add a bit of the following CSS in line <p>Hello, world!</p> that look like
<p style="font-family: sans-serif;">Hello, world!</p>



























