الخميس، 10 أغسطس 2017

Full Video Converter Free

Full Video Converter Free is a DVD and Video programming created by Full Video Converter Inc.. After our trial and test, the product is ended up being legitimate, secure and free. Here is the official depiction for Full Video Converter Free: 

EditByBSEditor: Full Video Converter Free has the abilities to change over all well known video groups from HD to HD, HD to SD and SD to SD, change between sound arrangements, separate sounds or pictures from recordings, and make video from photographs. 

Key elements: 

1.Supported High-Definition recordings: H.264/MPEG-4 AVC, AVCHD Video (*.m2ts, *.mts), Apple TV h.264 720P, MKV, HD WMV, MPEG2/MPEG-4 TS HD Video, and so on. 

2.Supported general video positions: AVI, MPEG, WMV, DivX, MP4, H.264/AVC, MKV, RM, MOV, XviD, 3GP, FLV, and so forth. 

3.Transform between MP3, WMA, WAV, RA, M4A, AAC, AC3, MP2, OGG and such sound organizations; remove sound document from HD/SD video. 

4.Capture pictures in clumps from video; make a video from pictures. 

5.Support multi-center CPU, multi-threading and Batch process, and give the most astounding pace conceivable to change over video documents. 

6.Compatible with iPod, iPhone, Apple TV, PSP, PS3, Xbox, Zune, Wii, NDS, PMP, cell phone, MP4 players, and other mixed media gadgets. 

7.Allows exchange the changed over records to iPod, iPhone and PSP specifically. 

8.Merge different documents/cuts into one and further include fun changes between each two recordings/pictures. 

9.Clip off any favored fragments and alternatively combine them into another one. 

10.Split a solitary document into a few records by preset time or size. 

11.Crop edge estimate; alter splendor/immersion/complexity and include masterful impact; include watermarks. 

12.Add numerous subtitle documents and soundtracks of various dialects in your video. 

13.Lots of video, sound, picture, tag and master parameters are movable. 

14.Select various yield arranges for one source record at one time and get them changed over inside a single tick. 

15.Offer a BitRate Calculator instrument to alter the yield document measure precisely. 

16.Run the product out of sight. 

Full Video Converter Free 10.3.6 = Video Converter +Video Editor +Video Creator +Video Clipper + Video Joiner + iPod/iPhone/PSP Transfer + CD Ripper + Audio Converter + Picture Extractor you can free download Full Video Converter Free 10.3.9 at this point.

الخميس، 20 يوليو 2017

HTML differences from XHTML


HTML supports the same tags, same features, but allows quirkier syntax:
Can skip some end tags, such as
,
Not all attributes have to have values:
Elements can overlap:
Early browsers tried to "do the right thing" even in the face of incorrect HTML:
Ignore unknown tags
Carry on even with obvious syntax errors such as missing
or
Infer the position of missing close tags
Guess that some < characters are literal, as in "What if x < 0?"
Not obvious how to interpret some documents (and browsers differed)

Create your Personal Webpage

Now that you know the HTML basics you can
create a personal web page on
tux.cs.drexel.edu
Create the directory
public_html
under your
home directory:
/home/userid/public_html
Deposit the web page
index.html
with your
personal homepage into the public_html directory
To access your page go to:
http://www.cs.drexel.edu/~userid

Putting it all together

<!-- This is an optional comment -->
<html>
<head>
<title> Your title goes here </title>
<style> Your style sheet goes here </style>
</head>
<body>
Your content goes here ... Paragraphs, images,
lists, links, texts, headings, etc.
</body>
</html>

Example CSS

<style>
body
{
background-image:url('imagesTurtles-Background.jpeg');
background-position : 50% 50% ;
background-size : 100% ;
background-origin : content ;
background-repeat: no-repeat ;
font-family: “Times New Roman”
color: blue
}
</style>

Cascading style Sheets

You can use cascading style sheets (CSS) to
customize your html file
e.g., specify colors, fonts, bold, italics for the
entire document
Style rules are defined using the tags
<style> ... </style>

HTML Sound Files

You can link sound files to your web pages:
<a href=”http://ww.cs.drexel.edu/~spiros/music/mysong1.m3u”
type=”audio/x-mpegurl”> listen to my song from an m3u </a>
<a href=”
http://ww.cs.drexel.edu/~spiros/music/mysong2.mp3
type=”audio/mpeg”> listen to my song as from an mp3 </a