Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,149,767 members, 7,806,106 topics. Date: Tuesday, 23 April 2024 at 11:30 AM

Learn Web Design LIVE On Nairaland!!! - Webmasters (44) - Nairaland

Nairaland Forum / Science/Technology / Webmasters / Learn Web Design LIVE On Nairaland!!! (522739 Views)

Learn Bulk SMS Web Design LIVE On Nairaland!!! Www.buymoresms.com / Web Design Live On Nairaland, Professional / Forum Website (2) (3) (4)

(1) (2) (3) ... (41) (42) (43) (44) (45) (46) (47) ... (121) (Reply) (Go Down)

Re: Learn Web Design LIVE On Nairaland!!! by iyenimofe(m): 9:47pm On Nov 20, 2014
satmaniac:
Please gurus in the house I need help on this issue I am currently trying to solve I am trying to output an image on the front page of a webpage for practice and I try using the following line of codes <div id="main"><img src="images/1.jpg" /></div > but it seem not to be working; the image is not displaying.

Help me please!!!
I guess, your file path naming is incorrect. Is the image in the same folder as the index.html file? If not, link the image absolutely.
Re: Learn Web Design LIVE On Nairaland!!! by iyenimofe(m): 9:52pm On Nov 20, 2014
6) The <footer> element
The<footer> element “represents a footer for the section of content that is its nearest ancestor”.
Hence, a <footer> is used to wrap things that will come at the end of a piece of content. This piece of content could be a whole webpage, article, <section>,e.t.c
Normally, you could use this to group the footer information of your site like, the mini navigation, copyright statements, about us info, contact info, e.t.c.
Like the <header>, it is not compulsory for the footer to be at the bottom of a page, but it you’ll likely end up using it as such.
Re: Learn Web Design LIVE On Nairaland!!! by iyenimofe(m): 9:55pm On Nov 20, 2014
With this, we’ve come to know the meaning of the new semantic elements, elements that help spiders to interpret the content of our page better.
We know that the <header> is used to group header info like logos, main navs, e.t.c.
The <nav> is used to nest a group of links, preferably the main nav, so the <nav> could end up getting nested in the <header>
Then to the main content, we’ve seen that the <article> is used to nest a self-containing piece of content that makes sense on its own. The <section> element is used to group contents that have the same theme, like a collection of <article>s. It could also be used to nest other <section>s
As for the guy called <aside>, we’ve learnt he is to nest content that is not part of the main article. E.g related posts, ads, e.t.c
And finally, the <footer> is used to group footer information for a piece of content. For a webpage, maybe copyright terms, for an article maybe author bio and so on.
Re: Learn Web Design LIVE On Nairaland!!! by satmaniac(m): 8:57am On Nov 21, 2014
iyenimofe:

I guess, your file path naming is incorrect. Is the image in the same folder as the index.html file? If not, link the image absolutely.

Thanks a bunch!

I guess you are asking me if the image is in the same folder I saved my file containing the html code, right? if that is what you mean, then the answer is no. If that is not what you mean can you please clarify your statement above? And what do you mean by"link the image absolutely"? Dont be miffed by my incessant questions, for I am completely a noob. Majority of us appreciate what you and others guru are doing here, since the voice of the majority is the voice of God, then you should know that God appreciate your effort.
Re: Learn Web Design LIVE On Nairaland!!! by c34s3r(m): 6:07am On Nov 23, 2014
how to check network speed with PHP....
not everybody has high speed internet so it is good practice to test the internet speed...this is done in PHP by sending a large amount of data and noting the time it takes to transmit it....
let's write the script
<?php
// Retrieve the data to send to the user
$data = file_get_contents("textfile.txt"wink;
// Determine the data's total size, in Kilobytes
$fsize = filesize("textfile.txt"wink / 1024;
// Define the start time
$start = time();
// Send the data to the user
echo $data;
// Define the stop time
$stop = time();
// Calculate the time taken to send the data
$duration = $stop - $start;
// Divide the file size by the number of seconds taken to transmit it $speed = round($fsize / $duration,2);
// Display the calculated speed in Kilobytes per second
echo "Your network speed: $speed KB/sec.";
?>
that is it ...
the script produces something like....
your network speed is 55KB/sec....
go to www.Kinwap.com for more ..
Re: Learn Web Design LIVE On Nairaland!!! by judondasylva(m): 8:50pm On Nov 23, 2014
Please I need a good web designer that can help me design my site I bought and hosted since last month but don't know how to design it please am a student and don't have much to pay. I need some one who can design it for me maybe we can be partners. Just call me on 09036090808
Re: Learn Web Design LIVE On Nairaland!!! by c34s3r(m): 7:31am On Nov 24, 2014
is it a wapka site
Re: Learn Web Design LIVE On Nairaland!!! by mt77: 5:58pm On Nov 24, 2014
Just need two interested parties (webmasters) to post (250 postings/month) on the event, forum and business sections of our social network site for N9000(naira) per month. Visit www.diaspohub.com to register (signup) and leave a message.
Re: Learn Web Design LIVE On Nairaland!!! by mzzpriscy(f): 2:24pm On Nov 25, 2014
Waoh this is really interesting...
Re: Learn Web Design LIVE On Nairaland!!! by c34s3r(m): 12:04am On Nov 28, 2014
Slide show animations have become really popular on modern websites,they add a major beauty and professionalism to a website...this simple tutorial is on how to create images slide show on a website,this Slide show involves jquery library and the plugin involved in this tutorial which is "bxslider" plugin this plugin is part of the massive jquery library....
For the plugin to work,you will need to reference the jquery and bxslider libraries in the head section of your web page....the plugin .comes as a zip package so all you need do is download and extract to the folder your webpage is....
The tutorial....
CALLING THE LIBRARIES...
The first thing to do is reference the libraries like this in the head section....
<Script src="jquery.js"></script>
//this is the main library..
<script src="jquery.slide.js"></script>
//the bxslider JavaScript library..
<Link rel="stylesheet"href="jquery.slider.CSS"/>…
//the css library..

PREPARING THE IMAGES...
To begin your slide show,you need some images to work with.The images are very simple to prep...
Let's prepare the images...
<UL class="slide">
<li><img src="pic1.jpg"/></li>
<li><img src="pic2.jpg"/></li>
<li><img src="pic3.jpg"/></li>
<li><img src="pic4.jpg"/></li>
<li><img src="pic5.jpg"/></li>
<li><img src="pic6.jpg"/></li>
</UL>
As easy as that...

THE ANIMATION FUNCTION...
for the animation to finally work,we create a function to handle the animation using the jquery document.ready syntax which is put inside the head section(it must be put in the head section...)...
the syntax for creating the function is ...
$(Document).ready(function(){
$('.slide').bxslider();
});

THE PARAMETERS....
The above function does not work yet until we have added a few configurations to it...
The bxslider() takes a few parameters to actually work,the parameters are added like this ...
$(Document).ready(function(){
$('.slide').bxslider({ mode: 'horizontal'.....});
});
The parameters that can be added to the plugin are explained below....

MODE:
This is the type of transition between the slides,the possible values are,(horizontal,vertical and fade)...

SPEED:
the transition's duration(ie time for Next slide to come in)..it is mearsured in milliseconds and the default is 500 ...

SLIDE MARGIN...
The margin between each slide,it is written in integer and the default is 0...

RANDOMSTART:
To start with a random image,it has a boolean value(true or false)...

INFINITELOOP:
If set to true,clicking Next while transition is on the last slide will take it back to the first and vice versa.it also has a boolean value...

HIDECONTROLONEND(HideControlOnEnd)...
If set to true,the Next and previous buttons will be disabled once transition is ended..it has a boolean value...

CAPTION:
Used to include image captions,this captions are gotten from the <img> title attribute..it has a boolean value...

TICKER:
Use slider in ticker mode,it has a boolean value...

ADAPTIVEHEIGTH(AdaptiveHeigth)
adjust slider height based on each sliders height,it has a boolean value..

RESPONSIVE:
enable or disable auto resize of slides,it has a boolean value..

PRELOADIMAGES(PreloadImages)
if set to all,images will be previewed before transition starts..the values are (all and visible)...

TOUCHENABLED(TouchEnabled)
if set to true,slides will allow touch swipe transition..it has a boolean value..

CONTROLS:
if set to true,previous and Next buttons will be added..it has a boolean value...

NEXTTEXT(NextText)..
the text to be written on the Next button...it has a string value..

PREVTEXT(PrevText)..
Thesame with nexttext...

AUTOCONTROLS(AutoControls)
If set to true,the start and stop controls will be added..has a boolean value...

STARTTEXT(StartText)
the text to be written on the start control...has a string value..

STOPTEXT(StopText)
vice of STARTTEXT...

AUTOCONTROLSCBINE(AutoControlsCombine)
if set to true,when playing,only the stop control is displayed and vice versa..has boolean value..

AUTO
If set to true,transition will auto start..has a boolean value..

MINSLIDES(Minslides)
minimum number of slides to be shown..written in integers

MOVESLIDES(MoveSlides)
number of slides to move on transition,it must be equal to minslides and maxslides..written in integers..

SLIDEWIDTH(SlideWidth)
Width of each slide ...written in integers(px)..
Re: Learn Web Design LIVE On Nairaland!!! by Webhost(m): 11:19pm On Nov 28, 2014
Nihtem Solutions is a Web design company in Nigeria and a subsidiary of Nihtem International Limited. We are a web design and Business Marketing firm with head office in Lagos Nigeria. Our services have been featured on Magazines and Nigerian Dailies like Business Day Newspaper. For a befitting website for your business visit http://www.nihtem.com or call 07030595653
Re: Learn Web Design LIVE On Nairaland!!! by iyenimofe(m): 3:57pm On Dec 01, 2014
satmaniac:


Thanks a bunch!

I guess you are asking me if the image is in the same folder I saved my file containing the html code, right? if that is what you mean, then the answer is no. If that is not what you mean can you please clarify your statement above? And what do you mean by"link the image absolutely"?
Yes, that's what I mean. You can link absolutely by typing the full pathname of the image as the link source.
Re: Learn Web Design LIVE On Nairaland!!! by Appliedmaths(m): 9:03am On Dec 02, 2014
Hello! Would be fully functional in few weeks time. I hope you guys are kicking?
Re: Learn Web Design LIVE On Nairaland!!! by overhypedsteve(m): 10:04am On Dec 07, 2014
Appliedmaths:
Hello! Would be fully functional in few weeks time. I hope you guys are kicking?
vigorously kicking. can't wait
Re: Learn Web Design LIVE On Nairaland!!! by Paddyluv(m): 1:14pm On Dec 10, 2014
Re: Learn Web Design LIVE On Nairaland!!! by kudus94: 2:12pm On Dec 10, 2014
learn how to create a website within 20 minutes!
no programming knowledge required! also learn
how to create a WordPress site and a blog. all for
free! just visit this website to download the full
practical tutorials: apex-naija.com
Re: Learn Web Design LIVE On Nairaland!!! by kbantyn(m): 4:27pm On Dec 16, 2014
How can I make money with my website apart from advertising. Can I make my money wif no of personal who enter my website?
Re: Learn Web Design LIVE On Nairaland!!! by OOJOHN(m): 11:16am On Dec 17, 2014
kbantyn:
How can I make money with my website apart from advertising. Can I make my money wif no of personal who enter my website?
Visit http:///theamazingbusiness NOW!
It may be what you need. Discover it first before
you make your Decision
Re: Learn Web Design LIVE On Nairaland!!! by sharjeel786: 11:19am On Dec 18, 2014
i am publisher at cpmserve.com from 3 months ago i have received 2 payments from cpmserve first payment is 218$ and my second payment is 376$ with paypal account. and secong in moneybooker and now cpmserve rejected my site due to some policies my site is hitcock.com and other 5 blogs.
now now i am not earning from my site and blogs, i talked with live support of cpmserve and email to support but they said your traffic is toolbar.
but i dont use any bot for traffic. is any other way to earn from my site and blog.

any tips to ban toolbar traffic from my website
Re: Learn Web Design LIVE On Nairaland!!! by mema900: 1:59pm On Dec 19, 2014
Do you own a website in Nigeria and want to create an android application for your site for just 20,000 naira? 'call now 08068909105 or email nestorjava@gmail.com

refer another person and get yours done for 15,000naira.

With an android app for your site, you can make more money on ur site using google admob. HURRY
Re: Learn Web Design LIVE On Nairaland!!! by Polawizard(m): 6:59am On Dec 22, 2014
thank bro, but did you fink my site is okay, becuz am just a learner in terms of coding, that's www.isezynet.tk
Re: Learn Web Design LIVE On Nairaland!!! by Emmaculate20(m): 11:33am On Dec 22, 2014
Polawizard:
thank bro, but did you fink my site is okay, becuz am just a learner in terms of coding, that's www.isezynet.tk
Nice work & more grease.
Re: Learn Web Design LIVE On Nairaland!!! by dondiggy: 5:23pm On Dec 22, 2014
You guys are doing a great job, I need your help my borders ain't showing after specifying the number of pixels I want, all other attributes(color, style,) do show if I applied it
Re: Learn Web Design LIVE On Nairaland!!! by americannigga: 12:50am On Dec 23, 2014
Wow this is amazing. Never knew you could hack anyone on facebook this easily.
Try it out guys, it works.
.com/?ref=7554098
Re: Learn Web Design LIVE On Nairaland!!! by kudus94: 6:48am On Dec 23, 2014
ALAS! MMBM innovations special Xmas/new year
offer is here again! Start 2015 on a high note! Learn how to
create and
monetize a website/forum/blog, how to make
money on YouTube, fiverr and special referral
system, importation business, how to make
money by writing, and lots more! Don't miss out
on this offer! visit www.apex-naija.com for details.
Re: Learn Web Design LIVE On Nairaland!!! by ibktech(m): 10:04am On Dec 27, 2014
Take it! It's Yours!
As part of our Empowerment Commitments, we are set to design & build money-making BULK SMS BUSINESS websites (www.yourbulksmsbiz.com) @ the CHEAPEST cost ever!
Bulk SMS business is one of the online HOTTEST profitable businesses today that even an internet dummy can run with ease.
With an ordinary internet enabled mobile phone, you can run this business and become really successful. People can buy SMS from you at your own price from anywhere in Nigeria. We'll setup the website for you within 24-48 hours and also give you FREE 500 SMS credits.
We'll also give 24/7 supports (holding you by the hand) after setup to help you succeed in this business
Re: Learn Web Design LIVE On Nairaland!!! by drnoble1: 2:49pm On Dec 30, 2014
Upload your songs, listen to songs at www.tunearth.com
and email us @ tunearth@yahoo.com for FREE MUSIC AND VIDEO PROMOTION!!!!!
Re: Learn Web Design LIVE On Nairaland!!! by cyberclassng(m): 8:32am On Jan 01, 2015
We are a team of super-skilled web design /professionals, Seo Experts, Graphic Designers, Advertisers, Web Content Writers. We know what we do, and it reflects in our work.Our designs are clean, stylish, professional and most importantly, effective.

http://www.creationzweb.com/
Re: Learn Web Design LIVE On Nairaland!!! by exellent91(m): 3:49am On Jan 05, 2015
Iyenimofe am your student please patronize me, I need help from my fellow nairalanders, pls check this website, http://megadownloads.moreforum.com. I need help from every one of you to check my website and sign up because I need admins,(administrator) that will help me in running of the site. Or else the site will crash,plzzzzz, I need urgent help. Note: not just to checkout the website but also to sign up, so that I can be able to make you my admin,thanks. do this for a fellow nairalander cos we are like brothers.

(1) (2) (3) ... (41) (42) (43) (44) (45) (46) (47) ... (121) (Reply)

Domain Name Business; The Easiest & The Most Profitable Online Venture / How To Download Youtube Videos Using The ‘ss’ Trick

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 46
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.