Stats: 3,010,504 members, 7,358,051 topics. Date: Wednesday, 22 March 2023 at 03:27 AM |
Nairaland Forum / Science/Technology / Programming / Web Design, Web Development And Mobile App Development Tutorial (13029 Views)
How Many Clients Have You Gotten From Your Web Development Ad On Nairaland? / Ios App Development Tutorial / Web Development Tutorial (2) (3) (4)
(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (Reply) (Go Down)
Re: Web Design, Web Development And Mobile App Development Tutorial by kaykay100(f): 8:50pm On Feb 27, 2019 |
when is the next set of tutorials coming up? |
Re: Web Design, Web Development And Mobile App Development Tutorial by Pelumi2019(m): 8:35am On Feb 28, 2019 |
Add me 0907375659 |
Re: Web Design, Web Development And Mobile App Development Tutorial by GeeBen20(m): 1:53pm On Feb 28, 2019 |
08100849154 |
Re: Web Design, Web Development And Mobile App Development Tutorial by smefinanceNG: 5:34pm On Feb 28, 2019 |
08107280188 |
Re: Web Design, Web Development And Mobile App Development Tutorial by kreativemind: 8:22pm On Feb 28, 2019 |
kaykay100: There will be tutorial updates tomorrow. Thanks |
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:16pm On Feb 28, 2019 |
kreativemind:sorry guys, i ran out of data yester nyt. My work: so i decided to start afresh and do something more professional looking instead of random stuff. Op pls go through my code, tell me if i did anything wrong.
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:17pm On Feb 28, 2019 |
Home page contd
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:18pm On Feb 28, 2019 |
contd
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:20pm On Feb 28, 2019 |
continued
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:21pm On Feb 28, 2019 |
next: about page
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Nobody: 11:24pm On Feb 28, 2019 |
Zepher528:wow! Very awesome and breathtakingly beautiful! Baby girl, could you teach me programming, please! |
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:24pm On Feb 28, 2019 |
about contd. If u notice, i didnt upload any coding or pix on my events page. Sorry about that, i just havent gotten the right pix for it yet. but the code i plan on using for it is similar to my photo gallery page
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:25pm On Feb 28, 2019 |
Contact page
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:26pm On Feb 28, 2019 |
contact page contd
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:26pm On Feb 28, 2019 |
Continued
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:27pm On Feb 28, 2019 |
Photo gallery
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:29pm On Feb 28, 2019 |
photo gallery contd
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:29pm On Feb 28, 2019 |
contd
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:30pm On Feb 28, 2019 |
Training Page
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:31pm On Feb 28, 2019 |
Training contd
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:32pm On Feb 28, 2019 |
contd
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:33pm On Feb 28, 2019 |
Registration complete page
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:34pm On Feb 28, 2019 |
continued
|
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:44pm On Feb 28, 2019 |
Thats all for now. Styling Tables and Assignment coming on next upload. Question: OP How do i add " *Required field " to the form ? How do i link the registration complete page to the submit button? How do i style the look of the "1 2 3" buttons at the bottom of the page ? How do i add and link small logos of FB, Twitter, Insta, youtube etc to d contact page ? Notice the image captain and banner in the pix of the home page, you'll see that it isn't reaching the right side of the image. How do I fix that ? |
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 11:45pm On Feb 28, 2019 |
Good night all |
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 12:18am On Mar 01, 2019 |
henry49: Thank you. I am very much a newbie in this field, this wonderful opportunity given by kreativemind is the first chance I'm actually getting to learn n experience this. Whatever I post on here I learnt from him. Thank you Op. But I'll help out in any way I can. Ask your question. |
Re: Web Design, Web Development And Mobile App Development Tutorial by Nobody: 4:39am On Mar 01, 2019 |
Zepher528:OK! I'll ask, in the course of time! 1 Like |
Re: Web Design, Web Development And Mobile App Development Tutorial by kreativemind: 12:03pm On Mar 01, 2019 |
Zepher528: That is the way to learn. Good one. Keep it up. Like i said in the earlier conversation, i am impressed. |
Re: Web Design, Web Development And Mobile App Development Tutorial by kreativemind: 12:30pm On Mar 01, 2019 |
Zepher528: Answers to your question 1. That is what we call "validation", there are many ways to do that, but for now, let use the normal html5 form validation. All you need to do is add required="yes" to your form element e.g <input type="email" id="email" name="email" placeholder="Enter Email" required="yes"> So if the field is empty and you attempt to "submit" the form, it will display the message that the field can not be empty. 2. How do i link the registration complete page to the submit button? Well, just be patient, we will treat that part as well, where you can submit the data collected through the form. 3. It depends on how you want to approach this, and there are better ways to do it, but they are called "Pagination" and you did not even need to create more pages to load more images, everything will be on a single page, but when they click on the numbers, it will load more images. But for now, let us style the "1.2,3". Step 1: Give the section holding all the "a" tag a class. i.e <section class="more-image"> <a href="page1.html">1</a> <a href="page2.html">2</a> <a href="page3.html">3</a> </section> Step 2: Apply CSS .more-image { display: inline-block; } .more-image a { color: #000; float: left; padding: 10px 20px; text-decoration: none; } Save this and check your page, you should see a good design. Now, you can now design another rule for the hover state, so that it will change color when they go over any of the numbers. 4. For the social media page, i know you can do this. But you can wait for us to settle that as well, later on in the tutorial. 5. For the image or banner caption. Just give it a 100% width like this max-width: 100%; This will fix the banner caption for you. Note: Above all, am impressed with what you have done so far. Keep approaching the learning process like this and before you know it, you will start creating beautiful websites and applications. If you have more questions, you can beep me, but there may be delay in my response on this forum, so just send a message to me on the facebook page and i will try my best to reply on time if am not busy. Once again, i love your work. Keep it up. 1 Like |
Re: Web Design, Web Development And Mobile App Development Tutorial by kreativemind: 12:38pm On Mar 01, 2019 |
Zepher528: You are welcome. As for henry49:, the first thing is to follow the tutorial on the website, then you can come here to ask questions, the others including "her" can then help you out. All the best. |
Re: Web Design, Web Development And Mobile App Development Tutorial by kreativemind: 12:39pm On Mar 01, 2019 |
There will be tutorial update today in the evening. Thanks guys |
Re: Web Design, Web Development And Mobile App Development Tutorial by Zepher528(f): 3:18pm On Mar 01, 2019 |
kreativemind: Thanks for the response op, God bless you. Looking forward to the next class. Especially can't wait for your SEO, Digital Mkt n Growth hacking class ![]() |
(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (Reply)
Is There Any Statement Like C System''pause'' For Python Cos It Dissappears Immediately I run the co / 10 Years Anniversary Of Nairalander Programmer / Creating A Group Chat With Html/javascript/php/mysql For Beginners
(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 - 2023 Oluwaseun Osewa. All rights reserved. See How To Advertise. 110 |