Posty

Wyświetlanie postów z maj, 2014

Jak obliczyć sinus i cosinus danego kąta

Do obliczenia sin (x) i cos (x) można użyć poniższego kodu: program sinus_cosinus_kata; uses crt; var x:real; begin write ('Podaj kąt do obliczenia wartości sinusa i cosinusa : '); readln (x); writeln ('Cos(x) dla ',x:0:2,' wynosi ',cos(x):0:4); writeln ('Sin(x) dla ',x:0:2,' wynosi ',sin(x):0:4); end.

Jak obliczyć średnią arytmetyczną dwóch liczb

program srednia_arytmetyczna; uses crt; var a,b:integer; begin writeln('Program obliczy średnią dwóch podanych liczb'); writeln; writeln; write('Podaj 1 liczbę: '); readln (a); write('Podaj 2 liczbę: '); readln (b); writeln('Średnia podanych liczb wynosi: ',(a+b)/2:0:3); readln; end.

Jak sprawdzić czy liczba jest parzysta

program parzysta_liczba; uses crt; var liczba:integer; begin write('Program sprawdza czy podana liczba jest parzysta'); writeln; writeln; write('Podaj liczbę: '); readln (liczba); if liczba mod 2=0 then writeln('Liczba jest parzysta') else writeln('Liczba nie jest parzysta'); readln; end.

Photroller - Mobile & Tablet Responsive Template

Obraz
Ergonomic navigation High Definition Graphics for high definition displays Looks gorgeous on iOS, Nokia, Samsung, HTC, and any device with a high DPI screen and low DPI screen! 48 High definition list icons. Demo: http://themeforest.net/item/photroller-mobile-tablet-responsive-template/6150430 DOWNLOAD: http://www.hotfiles.ro/ download /photroller.rar/1121786 http://www.mirrorcreator.com/files/0CXBX8FL/photroller.rar_links http://www.myuplbox.com/file/download/1116439 http://www.upl.me/YFFvcy http://www37.zippyshare.com/v/22766273/file.html http://www.nowdownload.ch/dl/0aa0d277b5376 http://ul.to/1xqpnpao http://rockdizfile.com/7ggsh96t6sy8 http://dfiles.eu/files/sjjvjdu2y http://rg.to/file/5ad96af57fc676eb4a5f79683194d95c/photroller.rar.html

FlipBox - Themeforest Multipages HTML5/CSS3 Template

Obraz
Ultra Responsive FlipBox is 100% responsive, each and every element including the Flex Sliders are fully responsive. Clean Code The code is well written using the best resources available and also all the files are well commented to make your work much easier. Demo: http://themeforest.net/item/flipbox-multipages-html5css3-template/7741316 DOWNLOAD: http:// www .hotfiles.ro/ download /flipbox.rar/1121623 http://www.mirrorcreator.com/files/89ZH4GRK/flipbox.rar_links http://www.myuplbox.com/file/download/1116261 http://www10.zippyshare.com/v/59505461/file.html http://www.nowdownload.ch/dl/b97bf05c37a5d http://ul.to/cgj2d7i2 http://rockdizfile.com/9d4gu2akg3b5 http://dfiles.eu/files/sf42g6f4e http://rg.to/file/e9dd3d83d381b91ca1b23b28b215e4ce/flipbox.rar.html http://www.upl.me/h8iMh6

GameForest - Online Magazine HTML Template

Obraz
GameForest is a perfect theme for gaming , news and entertainment websites. Built on latest Twitter Bootstrap . Template is available in 4 colors. Demo: http://themeforest.net/item/gameforest-online-magazine-html-template/5007730 DOWNLOAD: http://www.hotfiles.ro/ download /gameforest.rar/1119869 http://www.myuplbox.com/file/download/1113173 http://www.mirrorcreator.com/files/X5N7OGGU/gameforest_0.rar_links http://www.nowdownload.ch/dl/ca56d8e80cfe2 http://www16.zippyshare.com/v/32670209/file.html http://rapidgator.net/file/22d597c42f65e0a46291c5327f87d7d0/gameforest.rar.html http://rockdizfile.com/p6frvs5827tz http://ul.to/i1na3n07 http://dfiles.eu/files/m5jyv8qw8 http://www.upl.me/dSXyt6

CAREERS - HTML Job Portal & Candidate Database

Obraz
CAREERS is a Job Portal Template that includes a Candidate Database & Job Listing with advanced options that enable efficient filtering . Demo: http://themeforest.net/item/careers-job-portal-candidate-database-html/6184051 DOWNLOAD: http:// www .hotfiles.ro/ download /careers.rar/1118710 http://www.mirrorcreator.com/files/L4PUJOFU/careers.rar_links http://www.myuplbox.com/file/download/1111505 http://www2.zippyshare.com/v/3649597/file.html http://www.nowdownload.ch/dl/adc92f7d5f6f5 http://ul.to/7j6znplg http://dfiles.eu/files/jaes05tx8 http://rg.to/file/b3e39f4b6c63c06adc0785536b1811d8/careers.rar.html http://rockdizfile.com/nx4ulxddavql http://www.upl.me/jVjzAS

Porady PHP - Jak sprawdzić czy plik istnieje

Jak sprawdzić czy plik istnieje? Można to zrobić w bardzo prosty sposób, oto on: <?php $plik  =  "elo.txt" ;  $sprawdz  =  file_exists ( $plik );    if (! $sprawdz )    {    echo( "Nie ma pliku $plik" );    }    else    {    echo( "Plik $plik istnieje" );    } ?>

Porady PHP - Dzielenie długiego tekstu

<? function  podziel ( $string ,  $width  =  75 ,  $break  =  "" ) { $pattern  =  sprintf ( '/([^ ]{%d,})/' ,  $width ); $output  =  '' ; $words  =  preg_split ( $pattern ,  $string , - 1 ,  PREG_SPLIT_NO_EMPTY  |  PREG_SPLIT_DELIM_CAPTURE ); foreach ( $words  as  $word ) { if ( false  !==  strpos ( $word ,  ' ' )) { $output  .=  $word ; } else { $wrapped  =  explode ( $break ,  wordwrap ( $output ,  $width ,  $break )); $count  =  $width  - ( strlen ( end ( $wrapped )) %  $width ); $output  .=  substr ( $word ,  0 ,  $count ) .  $break ; $output  .=  wordwrap ( substr ( $word ,  $count ),  $width ,  $break ,  true ); } } return  wordwrap ( $output ,  $width ,  $break ); } $string...

Porady PHP - Baza danych na plikach tekstowych

Przykładowy uproszczony formularz: <form method="post" action="skrypt.php"> <label for="imie">imie:</label><br/> <input type="text" size="40" name="imie"><br/> <label for="nazwisko">nazwisko:</label><br/> <input type="text" size="40" name="nazwisko"><br/> <label for="telefon">telefon:</label><br/> <input type="text" size="40" name="telefon"><br/> <label for="adres">adres:</label><br/> <input type="text" size="40" name="adres"><br/><br/> <input type="submit" value="wyślij"><br/> </form> Przykład zapisu w formie uproszczonej, jeśli chcesz umieszczać formularz na zewnątrz musisz go odpowiednio zabezpieczyć: <?  if (isset( $_POST [ ...

Porady PHP - Jak policzyć ilość plików w katalogu

<? //nazwa katalogu $katalog  =  "pliki/" ; //jeśli chcemy wyliczyć liczbę plików konkretnego typu stosujemy maskę *.rozszerzenie if ( glob ( $katalog   .  "*.*" ) !=  false ) {   $ile  =  count ( glob ( $katalog  .  "*.*" ));  echo  "$ile" ; } else {  echo  "0" ; } ?>

Turbo pascal - Program obliczający pole koła

W tej prostej poradzie pokażę jak łatwo obliczyć pole koła program pole_kola; var r:real; { promień koła - zmienna rzeczywista } begin writeln('Obliczamy pole kola'); write('Podaj promien kola: '); readln(r) ; write('Pole kola wynosi '); write(Pi*r*r:8:3); { oblicza i wypisuje wynik } readln; end.

Turbo pascal - Program ustalający płeć z podanego imienia

program imie; uses crt; var imie:string; begin Write('Wpisz swoje imie : '); readln (imie); writeln; writeln('Twoja Plec to :'); if imie[ length (imie)]='a' then writeln('KOBIETA') else writeln('MEZCZYZNA'); end.

Turbo pascal - Program obliczający pole prostokąta o dowolnych bokach

program pole prostokata; uses crt; var a,b:integer; begin Write('Podaj bok a : '); readln (a); Write('Podaj bok b : '); readln (b); Writeln('Pole prostokata wynosi : ',a*b); readln; end.

Turbo pascal - Program obliczający silnie

program silnia; uses crt; var i,x: Integer; w : Longint; begin Write('Podaj liczbe x: ');Read(x); W :=1; for i:=1 to x do W:=W*i; Writeln('Silnia liczby ',x, ' wynosi ', W); end.

Turbo pascal - Program obliczający pierwiastek z danej liczby

Program oblicza pierwiastek z danej liczby z zastosowaniem funkcji i pętli for: program pierwiastkowanie; var a :real; function pierwiastek (a:real):real; var x:real; i :integer; begin x:=a/2; for i:=1 to 100 do x:=(x+a/x)/2; pierwiastek:=x; end ; begin write ('Podaj liczbe: '); readln (a); writeln ('Pierwiastek z liczby ',a:0:2,' wynosi ',pierwiastek(a):0:2); readln; end .

Turbo pascal - Program przeliczający radiany na stopnie

uses crt;{lub wincrt;} var kat:real; function stopnie(radiany:real):real; begin stopnie:=radiany/PI*180; end; begin write('Podaj wartosc kata w radianach :'); readln(kat); writeln('Wartosc kata w stopniach wynosi : ',stopnie(kat):0:4); readln; end.

Turbo pascal - Program przeliczający stopnie na radiany

Kod źródłowy: uses crt;{lub wincrt;} var kat:real; function radiany(stopnie:real):real; begin radiany:=stopnie*PI/180; end; begin write('Podaj wartość kata w stopniach :'); readln(kat); writeln('Wartość kata w radianach wynosi : ',radiany(kat):0:4); readln; end.

Program zamieniający ułamek zwykły na dziesiętny

Kod źródłowy: uses crt;{lub wincrt;} var dz:double; licznik,mianownik:longint; function NWD(a,b:longint):longint; begin while a<>b do if a>b then a:=a-b else b:=b-a; NWD:=a; end; procedure zwykly(dzie:double;var licz,mian:longint); var pom,l,m:double; i:byte; nw:longint; begin l:=dzie; m:=1; while(int(l)<>l)do begin l:=l*10;m:=m*10;end; licz:=trunc(l); mian:=trunc(m); nw:=NWD(licz,mian); licz:=round(licz/nw); mian:=round(mian/nw); end; begin Writeln('Program zamienia ulamek dziesietny na zwykly.'); writeln('Podana wartosc zawierac sie musi miedzy 0..1'); writeln('Liczba ma miec max 5 cyfr po przecinku'); write('Podaj wartosc ulamka w formie dziesietnej : ');readln(dz); if (dz>=1)or(dz>0.99999)then begin writeln('Bledne dane !!!'); readkey; halt; end; zwykly(dz,licznik,mianownik); writeln; writeln('Ulamek zwykly to :'); writeln('Licznik : ',licznik); writeln('Mianown...

Program obliczający sumę cyfr podanej liczby

Kod źródłowy: uses crt;{lub uses wincrt;} var liczba:word; cyfr:byte; cyfra:byte; s:string; error:integer; begin write('Podaj liczbe : '); readln(liczba); str(liczba,s); liczba:=0; for cyfr:=1 to length(s)do begin val(s[cyfr],cyfra,error); liczba:=liczba+cyfra; end; writeln('Suma cyfr to ',liczba); readkey; end.

Image Zoom Tour – wirtualny spacer

Obraz
Skrypt jQuery pozwala zaprojektować coś w rodzaju wirtualnego spaceru. Tworzymy zdjęcie na którym zaznaczamy obszary, które będą hiperłączami na przykład do drugiego pomieszczenia, do środka budynku lub zbliżeniem jakiegoś przedmiotu. Po naciśnięciu na obszar płynnym efektem przejścia przechodzi się do tego przedmiotu. W nowym zdjęciu również możemy zamieszczać nowe klikalne obszary. Skrypt świetnie nadaje się również do opisywania rożnych towarów/produktów. Framework: jQuery Demo: http://tympanus.net/Development/ImageZoomTour/index2.html Opis: http://tympanus.net/codrops/2011/08/23/image-zoom-tour/

Book Your Travel - Themeforest Online Booking HTML Template

Obraz
Book Your Travel is a responsive HTML Template ideal for booking portals, travel agencies, hotels, bed and breakfasts , guest houses, villas, etc. or travel blogs, but it would suit for any business with slight customizations. Demo: http://themeforest.net/item/book-your-travel-online-booking-html-template/3813953e-booking-html-template/3813953 DOWNLOAD: http://www.mirrorcreator.com/files/S0BE0MHZ/bookyourtravel.rar_links http://dfiles.eu/files/sj0v4o1q7 http://www.myuplbox.com/file/ download /1035184 http://www25.zippyshare.com/v/78396218/file.html http://www.share-byte.net/j8K0Es http://www.nowdownload.ch/dl/tc397thwdazq3 http://ul.to/k7rj49ej http://fisierulmeu.ro/25DG4XJ6CT3Q/bookyourtravel-rar.html http://rockdizfile.com/c1ak9wo1jg1n http://www.upl.me/vwSbeS

N-Travel - Themeforest Responsive HTML Theme

Obraz
NTravel is a responsive HTML Template ideal for booking portals , travel agencies, hotels, bed and breakfasts , guest houses , villas, etc. or travel blogs, but it would suit for any business with slight customizations. Demo: http://themeforest.net/item/ntravel/6448958 DOWNLOAD: http://www.hotfiles.ro/download/ntravel.rar/1057683 http://www.mirrorcreator.com/files/0RUKUVQJ/ntravel.rar_links http://dfiles.eu/files/13lin9kqz http://www.myuplbox.com/file/download/1030361 http://www43.zippyshare.com/v/28937283/file.html http://www.share-byte.net/VivBIP http://www.nowdownload.ch/dl/7y9egxg1v07bc http://ul.to/gsgnva0d http://fisierulmeu.ro/259YK24R0YGO/ntravel-rar.html http://rockdizfile.com/fuuv5zocwj2o http://www.upl.me/iYiplz

Revelation - Themeforest Elegant and Minimal Business Template

Obraz
Revelation is a business HTML template with a minimal, clean and elegant design well suited for personal and proffesional use. It comes with 17 pre-coded HTML pages which are easy to use and customize thanks to the extensive documentation. Demo: http://themeforest.net/item/revelation-elegant-and-minimal-business-template/610103 DOWNLOAD: http://www.hotfiles.ro/download/revelation.rar/1051710 http://www.mirrorcreator.com/files/0FOZAQSZ/revelation.rar_links http://dfiles.eu/files/rzg4yucn3 http://www.myuplbox.com/file/download/1023675 http://www.upl.me/COiQrq http://www.myuplbox.com/file/download/1023675 http://www35.zippyshare.com/v/41910635/file.html http://www.share-byte.net/lvf8VG http://www.nowdownload.ch/dl/m6x8itybnwf8l http://ul.to/mx1ozhvn http://fisierulmeu.ro/240PODB6Z5VU/revelation-rar.html http://rockdizfile.com/s67ivtuu5se2

Hostr - Themeforest HTML5-CSS3 Hosting Template

Obraz
Clean Modern HTML5 – CSS3 Hosting Template Features 12 Pages Modular Grid Based Custom Fonts Clean Markup Documented Demo: http://themeforest.net/item/hostr-html5-css3-hosting-template/5056350 DOWNLOAD: http://www.hotfiles.ro/download/hostr.rar/1055797 http://www.mirrorcreator.com/files/2PCRTRXA/hostr.rar_links http://dfiles.eu/files/7gx393rzk http://www.myuplbox.com/file/download/1028128 http://www50.zippyshare.com/v/33396551/file.html http://ul.to/bnuxddnz http://fisierulmeu.ro/24TV02HCPO75/hostr-rar.html http://rockdizfile.com/vwn170mev796 http://www.share-byte.net/nM2nRr http://www.upl.me/DfPwIh http://www.nowdownload.ch/dl/g7u13atsq4ll5

Advocate - Themeforest Nonprofit Responsive HTML Template

Obraz
Advocate is a responsive HTML template ideal for nonprofits, charities, activists and political campaigns. Clearly display your events, news, sponsors and programs making it easy for users to donate to and learn more about your cause. Demo: http://themeforest.net/item/-advocate-a-nonprofit-responsive-html-template-/3203354 DOWNLOAD: http://www.hotfiles.ro/download/advocate.rar/1078158 http://www.mirrorcreator.com/files/0LKPWSUM/advocate.rar_links http://dfiles.eu/files/2qsopi8nx http://www72.zippyshare.com/v/96112711/file.html http://www.share-byte.net/iiBBLN http://www.nowdownload.ch/dl/83c88478f2628 http://ul.to/w8jeyd9p http://fisierulmeu.ro/29C4HENIBTDO/advocate-rar.html http://rockdizfile.com/0c17e72cryrn http://www.myuplbox.com/file/download/1056324 http://www.upl.me/lEYAQm

Squarecut - Themeforest Responsive Landing Page template

Obraz
Squarecut is Minimal and Responsive landing page template for software / app. It is a one page template with tabbed navigation. Demo: http://themeforest.net/item/squarecut-responsive-landing-page-template/2903902 DOWNLOAD: http://www.hotfiles.ro/download/squarecut.rar/1075400 http://www.mirrorcreator.com/files/0RXLESRV/squarecut.rar_links http://dfiles.eu/files/mleab3fu7 http://www.myuplbox.com/file/download/1050983 http://www56.zippyshare.com/v/96708562/file.html http://www.nowdownload.ch/dl/872d2486b4f9d http://www.share-byte.net/gHMNlE http://ul.to/eiczl6bb http://fisierulmeu.ro/28KSPCAVCPWK/squarecut-rar.html http://rockdizfile.com/q7ba33sq0tub http://www.upl.me/UQkQpl

Clean Sport - Themeforest Sport HTML Template

Obraz
18 Pages … Sport Design. Easy to customize. All purpose design. Modern layout Ajax working contact form . dropdown sub menus. mJQuery powerd pages. Working twitter widget. Demo: http://themeforest.net/item/clean-sport-sport-html-template/3215561 DOWNLOAD: http://www.hotfiles.ro/download/cleansport.rar/1070556 http://www.mirrorcreator.com/files/0ITQU900/cleansport.rar_links http://dfiles.eu/files/paqcjkj8y http://www17.zippyshare.com/v/62770040/file.html http://www.nowdownload.ch/dl/de3bb36a33b9b http://www.upl.me/lDYQvF http://ul.to/q8esvza5 http://fisierulmeu.ro/27LAQQPWGKI8/cleansport-rar.html http://rockdizfile.com/ns9dnpowfj2x http://www.share-byte.net/fPxyvR http://www.myuplbox.com/file/download/1045671

News - Themeforest Premium HTML Template

Obraz
NEWS is a unique and creative html template with clean and modern design. It is perfect choice for your magazine, blog and news websites . It can be customized easily to suit your wishes. Demo: http://themeforest.net/item/news/4837224 DOWNLOAD: http://www.hotfiles.ro/download/newshtml.rar/1067138 http://www.mirrorcreator.com/files/G0VBRIVN/newshtml.rar_links http://dfiles.eu/files/1vmcl1j74 http://www.myuplbox.com/file/download/1041662 http://www.upl.me/w30d1F http://www76.zippyshare.com/v/91673139/file.html http://www.share-byte.net/NucaOW http://ul.to/uy4qfq21 http://fisierulmeu.ro/26GNRXESRHQL/newshtml-rar.html http://www.nowdownload.ch/dl/ae630af3e728e http://rockdizfile.com/4ad3vxyvyswm

Audiofolio - Themeforest Music Site Template

Obraz
Audiofolio is a responsive music site template . Perfect for music portfolio or creative personal site. Demo: http://themeforest.net/item/audiofolio-music-site-template/4230086 DOWNLOAD: http://www.hotfiles.ro/ download /audiofolio.rar/1092986 http://www.mirrorcreator.com/files/GYLHMYQX/audiofolio.rar_links http://www.myuplbox.com/file/download/1076214 http://www.share-byte.net/4ZuoWS http://www24.zippyshare.com/v/98654189/file.html http://www.nowdownload.ch/dl/e0bdfbcffa101 http://ul.to/9hx14aeh http://fisierulmeu.ro/323F3NZJLS73/audiofolio-rar.html http://rockdizfile.com/qx9i7op12i35 http://www.upl.me/dS9e6a https://mega.co.nz/#!MwplQDbI!Z8rdqWFWSay_QWVg0cRnXPAJNOLj4VciTHhglI5sniY

Airo Hosting - Themeforest Responsive Hosting Theme

Obraz
Airo Hosting is a Responsive HTML5 / CSS3 (Desktop, tablet, mobile phone…) simple, clean and Professional theme. It comes with Unique Pages, Awesome Slideshows, Unique Color Variations. Easy-to-customize and fully featured design. Create Outstanding Web Hosting site in Minutes! Demo: http://themeforest.net/item/airo-hosting-responsive-hosting-theme/5369842 DOWNLOAD: http://www.hotfiles.ro/ download /airo.rar/1088520 http://www.mirrorcreator.com/files/1L4PLRVM/airo.rar_links http://dfiles.eu/files/5w1cahdjk http://www.myuplbox.com/file/download/1070757 http://www71.zippyshare.com/v/53843926/file.html http://www.share-byte.net/gp6IZf http://www.nowdownload.ch/dl/f2fa167dea47a http://ul.to/i7uc0jg5 http://rockdizfile.com/a0zistq5o7gq http://www.upl.me/dStIzr

Humanum – Themeforest Responsive vCard Template

Obraz
Fully Responsive Retina Ready 8 Well-Polished Color Styles Plenty of Easy to Customize UI Elements Smooth Navigation (without reloading the page – thanks to AJAX and HTML5 History API) Working AJAX Contact Form (with 2 styles and validation ) Working Twitter 1.1 Feed Demo: http://themeforest.net/item/humanum-responsive-vcard-template/5230208 DOWNLOAD: http://www.myuplbox.com/file/download/1083246 http://www.hotfiles.ro/download/humanum.rar/1098335 http://www.mirrorcreator.com/files/CPXSKROQ/humanum.rar_links http://www50.zippyshare.com/v/76443054/file.html http://www.nowdownload.ch/dl/858bc2cc78b15 http://ul.to/ni5allh7 http://fisierulmeu.ro/33N0SBET5051/humanum-rar.html http://rockdizfile.com/0ncnrnay2rox https://mega.co.nz/#!MkxhFQJT!KslXTW3QS82NY_8mOG9j4eOwOmk6qIRdi8OfRXHcoD4 http://dfiles.eu/files/szx0rbpx0 http://www.upl.me/wFGKOC

UNOLUTION One Complete Solution - Responsive HTML5

Obraz
Unolution is a project dedicated to create a ONE COMPLETE SOLUTION instead of just another theme. It’s a well thought design includes almost all features to kick start your website and more will be added in each release. Demo: http://themeforest.net/item/unolution-one-complete-solution-responsive-html5/4655264 DOWNLOAD: http://www.hotfiles.ro/ download /unolution.rar/1113066 http://www.myuplbox.com/file/download/1102572 http://www.mirrorcreator.com/files/UQHAZQD5/unolution.rar_links http://www6.zippyshare.com/v/6592086/file.html http://www.nowdownload.ch/dl/850cff2f0d8e7 http://ul.to/f4i20pcp http://fisierulmeu.ro/36J5Q0XRLA5S/unolution-rar.html http://dfiles.eu/files/55oq1h0ka http://rg.to/file/d11487a3a539f10265ab976cc0c147ad/unolution.rar.html http://rockdizfile.com/rkje395v8671

Emotion - Responsive HTML5/CSS3 Template

Obraz
Emotion is a responsive and HTML5/CSS3 template. This is a flexible, modern and sleek site template , suited for any of your project and easy to customize. Emotion template includes 15 html files. Demo: http://themeforest.net/item/emotion-responsive-html5css3-template/4114650 DOWNLOAD: http://www.hotfiles.ro/ download /emotion.rar/1110447 http://www.upl.me/a5pYY1 http://www.mirrorcreator.com/files/0O7VFQNV/emotion.rar_links http://www.myuplbox.com/file/download/1098965 http://ul.to/34lta38h http://fisierulmeu.ro/36VIHKA0F0CL/emotion-rar.html http://www.nowdownload.ch/dl/9b86c91e149f0 http://www61.zippyshare.com/v/22305262/file.html http://rockdizfile.com/xn4hqnefuh5f http://dfiles.eu/files/psprsj2mz

Jollyness - Multi Purpose HTML5 Website Template

Obraz
Jollyness, A Classy HTML template available here to purchase. This Multipurpose template is packed with infinite features and functionalists.You might have planning to develop any kind if website. We guarantee that our Jollyness Multipurpose HTML5 website template will suits all your needs. Jollyness comes with 11 different bulbs (versions). The theme make holds with blistering parallax effects, eye-catching hover animations, and more shining features. Demo: http://themeforest.net/item/jollyness-multi-purpose-html5-website-template/7229810 DOWNLOAD: http://www.hotfiles.ro/download/jollyness.rar/1115060 http://www.myuplbox.com/file/download/1106113 http://www25.zippyshare.com/v/56865546/file.html http://www.nowdownload.ch/dl/38c0958279f16 http://ul.to/8telg3fk http://fisierulmeu.ro/37P9WOJZLKYB/jollyness-rar.html http://rockdizfile.com/gtqv5cl3v2e4 http://dfiles.eu/files/656awijpu http://www.mirrorcreator.com/files/9TVC2U4W/jollyness_0.rar_links http://rg.to/file/...

Lifeline NGO and Charity Responsive HTML Template

Obraz
Lifeline is a clean, fully responsive, highly flexible and beautifully designed template which is provided with six (6) unique homepage layouts to best suit the advanced requirements of your Charity Website Template or NGO Website Template website. To promote the ranking of your site, our skilled professionals have constructed it with latest search engine friendly parameters, viz. built-in SEO, fast loading and cross browser compatibility . Demo: http://themeforest.net/item/lifeline-ngo-and-charity-responsive-html-template/5662138 DOWNLOAD: http://www.hotfiles.ro/download/lifeline.rar/1115058 http://www.myuplbox.com/file/download/1106110 http://fisierulmeu.ro/37CKZL146RW2/lifeline-rar.html http://www.mirrorcreator.com/files/J3WC6JUD/lifeline.rar_links http://www9.zippyshare.com/v/67106621/file.html http://www.nowdownload.ch/dl/ff759c5fa60d8 http://ul.to/9h3ifwj4 http://rockdizfile.com/7knd0776f3cd http://dfiles.eu/files/4oxmbu4cj http://rg.to/file/540cd688b234f...

Realto - Real Estate Template - Bootstrap Based

Obraz
An easily customized HTML template that can be appropriate for Real Estate Company, who need to do their business online via websites with listings and property details pages. Demo: http://themeforest.net/item/realto-real-estate-template-bootstrap-based/4556961 DOWNLOAD: http:// www .hotfiles.ro/download/realto.rar/1114700 http://www.mirrorcreator.com/files/1JYWJ8WO/realto.rar_links http://www.myuplbox.com/file/download/1105249 http://www30.zippyshare.com/v/93734402/file.html http://www.nowdownload.ch/dl/5546a302f9e2f http://ul.to/pukiju0x http://fisierulmeu.ro/37CGDUXPGU6V/realto-rar.html http://rockdizfile.com/b86vmka7xzfm http://dfiles.eu/files/cr2rzlpzw http://rg.to/file/42e07e0029888bad86be8c9042351d53/realto.rar.html

Origami - Creativemarket multipurpose template

Obraz
Origami is a multipurpose template that is perfect for individuals or businesses . This theme comes with crisp graphics and is retina ready and is responsive meaning it looks great on all devices. It has many unique sections that you can rearrange and customize so it can suit your needs exactly. There are 2 layouts already included: Corporate style and Portfolio style. Demo: https://creativemarket.com/webdesigncrowd/15832-Origami-multipurpose-template DOWNLOAD: http://www.hotfiles.ro/download/1origami.rar/1115430 http://www.mirrorcreator.com/files/VMCROKMJ/1origami.rar_links http://www.myuplbox.com/file/download/1106768 http://www.nowdownload.ch/dl/065c89fca24d5 http://ul.to/bchveb6y http://www67.zippyshare.com/v/88365645/file.html http://rockdizfile.com/ch50w5dxtl45 http://dfiles.eu/files/btjyg5qkg http://rg.to/file/9fba6961a15dca65889e4598287dfc06/1origami.rar.html http://www.upl.me/crHB96

Envor - Themeforest Fully Multipurpose Template

Obraz
Modern HTML template for corporate and portfolio sites. Based on Bootstrap Framework v3.1.1. and Envor PSD Template . Can be used for estate sites. hosting sites and online stores in particular . 50 HTML page templates and 100 ready to use pages are able to let you make any custom website you want. Try it! Demo: http://themeforest.net/item/envor-fully-multipurpose-template/7506884 DOWNLOAD: http://www.hotfiles.ro/download/envor.rar/1115797 http://www.mirrorcreator.com/files/15KFPO7U/envor.rar_links http://www.myuplbox.com/file/download/1107402 http://www56.zippyshare.com/v/4651481/file.html http://www.nowdownload.ch/dl/5fa448066a961 http://www.upl.me/wjPogr http://ul.to/efhbowop http://dfiles.eu/files/anvg1qhx9 http://rg.to/file/42409c54be16a1944392388883bd6781/envor.rar.html http://rockdizfile.com/ipjg6ossr7gj

Estate Plus - Real Estate HTML5 Website Template

Obraz
The Estate Plus is an awesome real estate design website template design with HTML5 CSS3 and Bootstrap 3.0. This template comes with amazing page examples like 3 different homepage layut (blog, map, slider), parallax effect layouts, custom real estate page templates, contact page and much more. Demo: http://themeforest.net/item/estate-plus-real-estate-html5-website-template/7143200 DOWNLOAD: http://www.hotfiles.ro/download/1estateplus.rar/1115434 http://www.mirrorcreator.com/files/U1SZJZ2L/1estateplus.rar_links http://www.myuplbox.com/file/download/1106772 http://www.nowdownload.ch/dl/9af2d5a2b44d2 http://ul.to/0sxo64bq http://www67.zippyshare.com/v/53846147/file.html http://rockdizfile.com/d5v75p3wz8g7 http://dfiles.eu/files/arcjptnt5 http://rg.to/file/a813f690fcc27e50edf4b07ba3fb2eb0/1estateplus.rar.html http://www.upl.me/5nYVQ8

Daylite - Multipurpose Responsive HTML5 Template

Obraz
Built with awesome Twitter Bootstrap Responsive HTML5 site template Daylite will be a great solution for your business , portfolio, blog or any other purpose with options for boxed & fullwidth layout, retina-ready graphics, 6 color schemes and a clean and professional design. Demo: http://themeforest.net/item/daylite-multipurpose-responsive-html5-template/4668717 DOWNLOAD: http://www.hotfiles.ro/download/daylite.rar/1117090 http://www.myuplbox.com/file/download/1109188 http://www.mirrorcreator.com/files/0FU7CKKA/daylite_0.rar_links http://www20.zippyshare.com/v/96072654/file.html http://www.nowdownload.ch/dl/62249886fb092 http://ul.to/jcyfh1s7 http://dfiles.eu/files/txnnu5z6t http://rg.to/file/c9a2cb247cf7932934a88f7e0bec4be2/daylite.rar.html http://rockdizfile.com/yt7jcjjzjxkd http://www.upl.me/MpCte3

Sterling - Themeforest HTML5 Responsive Web Template

Obraz
Sterling is a fully Responsive Website Template built on a highly intelligent framework. It’s the perfect template for everyone in need of a professional online presence. Whether your an HTML pro or just a beginner, you’ll have absolutely no problems at all working with this website template Demo: http://themeforest.net/item/sterling-html5-responsive-web-template/2832407 DOWNLOAD: http://www.hotfiles.ro/ download /sterling.rar/1117094 http://www.myuplbox.com/file/download/1109196 http://www.mirrorcreator.com/files/QJDIH4MY/sterling_0.rar_links http://www20.zippyshare.com/v/51748250/file.html http://www.nowdownload.ch/dl/1e2021c793cb5 http://ul.to/6l98ud0n http://dfiles.eu/files/5dx1n3gzy http://rg.to/file/e5c110640cf0c5597173ed164bf781be/sterling.rar.html http://rockdizfile.com/eia4or6yv6oj http://www.upl.me/RyIuYY

Rocket - Themeforest Landing Page Template

Obraz
Rocket is a clean flat landing page for business template. This template built with fully responsive flat design, Bootstrap 3.0 system, minimalize structure and a slew of features. Demo: http://themeforest.net/item/rocket-landing-page-template/6687027 DOWNLOAD: http://www.hotfiles.ro/download/rocket.rar/1118994 http://www.mirrorcreator.com/files/0BQ8DHDP/rocket.rar_links http://www.myuplbox.com/file/download/1112097 http://www28.zippyshare.com/v/28745842/file.html http://www.nowdownload.ch/dl/a5aa1429f658f http://ul.to/cidal6o8 http://rockdizfile.com/uzunlvll41iy http://dfiles.eu/files/gx43o1r8p http://rg.to/file/767732737f687395378a84e33324ffab/rocket.rar.html http://www.upl.me/X9wVFd  

GameForest - Online Magazine HTML Template

Obraz
GameForest is a perfect theme for gaming, news and entertainment websites. Built on latest Twitter Bootstrap. Template is available in 4 colors. Demo: http://themeforest.net/item/gameforest-online-magazine-html-template/5007730 DOWNLOAD: http://www.hotfiles.ro/ download /gameforest.rar/1119869 http://www.myuplbox.com/file/download/1113173 http://www.mirrorcreator.com/files/X5N7OGGU/gameforest_0.rar_links http://www.nowdownload.ch/dl/ca56d8e80cfe2 http://www16.zippyshare.com/v/32670209/file.html http://rapidgator.net/file/22d597c42f65e0a46291c5327f87d7d0/gameforest.rar.html http://rockdizfile.com/p6frvs5827tz http://ul.to/i1na3n07 http://dfiles.eu/files/m5jyv8qw8 http://www.upl.me/dSXyt6

AJAX Web Chat

Obraz
Prosty, ale bardzo funkcjonalny skrypt czatu w PHP, MySQL oraz jQuery. Prócz świetnego wyglądu, czat obsługuje awatary z Grovatar.com .

phpFreeChat

Obraz
Darmowy, prosty w instalacji, szybki, konfigurowalny i wielojęzykowy skrypt, który używa prostego systemu plików do przechowywania wiadomości. Wykorzystuje AJAX do płynnego odświeżania Obsługuje wiele pokoi (/join), prywatne wiadomości, zarządzanie (/kick, /ban), niestandardowe kompozycje w oparciu o CSS oraz własne polecenia czatu.

JsChat

Obraz
JsChat to czat open source używającego prostego protokołu bazującego na JSON. Gdy z niego korzystamy, mamy wrażenie, że to klient IRC. Skrypt automatycznie rozpoznaje linki do obrazków lub filmów z YT, które wyświetla. Pozwala również na logowanie za pomocą danych z Twittera.

Mibew Messenger

Obraz
Mibew Komunikator jest oprogramowaniem wsparcia użytkownika (live support) opartym na licencji open-source. Dostępna jest do niego polska paczka językowa.

PHP Chat Script

Obraz
PHP Chat Script jest prostym skryptem czatu, którego możemy w łatwy sposób umieścić na naszej stronie. Został wykonany przy użyciu PHP i JavaScriptu, używając OOP (Programowania Obiektowego) oraz technologi Ajax. Ten czat nie wymaga bazy danych, gdyż pracuje na plikach.

Ajax Chat Script

Obraz
Lekka i w pełni konfiguralna wersja czatu w AJAX & PHP. Nie wymaga zatem Javy, Flasha czy innych pluginów. Pozwala określić prywatność pokoi, posiada system użytkowników oraz emotikony. Łatwo go zintegrować z własną stroną oraz logowaniem.

Simple jQuery Chatroom

Obraz
Prosty skrypt czatu w jQuery oraz PHP, który nie potrzebuje wiele do jego uruchomienia. Pozwala każdemu odwiedzającemu naszą stronę dodać wpis. Posiada funkcję odpowiedzialną za zabezpieczenie przed spamowaniem. Od strony konfiguracji pozwala ustalić maksymalną ilość znaków pojedynczej wiadomości, maksymalną ilość wpisów w pliku czatu oraz na łatwą edycję atrybutów CSS.

Progression.js

Obraz
Plugin jQuery, który w czasie rzeczywistym wyświetla postęp dokonany przez użytkownika, podczas wypełniania formularza. Implementacja jest bardzo prosta. Wystarczy załączyć bibliotekę jQuery oraz plugin, a następnie do każdego z pól formularza dodać dwa atrybuty: data-progression oraz data-helper. Ten pierwszy należy pozostawić pusty, zaś drugi uzupełnić tekstem pomocniczym, który wyświetla się przy pasku postępu. Ostatnią czynnością jest inicjacja pluginu poprzez wskazanie konkretnego ID formularza.