Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,150,401 members, 7,808,436 topics. Date: Thursday, 25 April 2024 at 11:56 AM

Please I Need Help On Html News Article - Webmasters - Nairaland

Nairaland Forum / Science/Technology / Webmasters / Please I Need Help On Html News Article (893 Views)

Visit My Blog For Ongoing Tutorial On Html / News Article Re-writers Needed ASAP / [html] Lesson Still On...read More On Html And Download Pdfs Now To Boost U. (2) (3) (4)

(1) (Reply) (Go Down)

Please I Need Help On Html News Article by Nobody: 3:53pm On Mar 20, 2019
please am new in web development i am having issue and i need webmasters to help me solve my problem.

I am trying to build a blog with html and css, so when i write some articles on the index page how am i gonna link each article to the relevant section of my webpage for instance politics.html section
<!Doctype html>
<html>
<head>
<title>Html news articles</title>
<link rel="stylesheet" href="">
</head>
<body>
<header>

<a class="site-name" href="#">google.com</a>
<nav>
<ul>
<li><a href="#">home</a></li>
<li><a href="">politics.html</a></li>
<li><a href="">about</a></li>
<li><a href="">contact</a></li>
</ul>
</nav>
</header>

<main>
<article>
<header>
<h1>Article1</h1>
</header>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed arcu ipsum, finibus sed dui ut, scelerisque vehicula felis. Pellentesque non lacus dapibus, tristique tortor in, pellentesque nisi. Sed turpis orci, laoreet vel molestie posuere, accumsan vel massa. Integer facilisis mollis mi, nec tempor tortor rhoncus non. Praesent tempor augue at gravida vestibulum. Pellentesque sodales placerat lacus quis pulvinar. Nam dictum non magna ut tristique. Vivamus a mauris tempus, volutpat sapien consequat, vehicula lorem. Maecenas posuere, turpis ac blandit aliquam, nisl eros sodales augue, id pharetra arcu erat non sapien. Aliquam volutpat ultrices risus vel rhoncus. Maecenas at orci viverra, placerat leo a, tempus lectus. Fusce sollicitudin condimentum facilisis.</p>
</article>
please what can i do from here thanks
Re: Please I Need Help On Html News Article by Julius2214(m): 6:04pm On Mar 20, 2019
Ogbonnaya1:
please am new in web development i am having issue and i need webmasters to help me solve my problem.

I am trying to build a blog with html and css, so when i write some articles on the index page how am i gonna link each article to the relevant section of my webpage for instance politics.html section
<!Doctype html>
<html>
<head>
<title>Html news articles</title>
<link rel="stylesheet" href="">
</head>
<body>
<header>

<a class="site-name" href="#">google.com</a>
<nav>
<ul>
<li><a href="#">home</a></li>
<li><a href="">politics.html</a></li>
<li><a href="">about</a></li>
<li><a href="">contact</a></li>
</ul>
</nav>
</header>

<main>
<article>
<header>
<h1>Article1</h1>
</header>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed arcu ipsum, finibus sed dui ut, scelerisque vehicula felis. Pellentesque non lacus dapibus, tristique tortor in, pellentesque nisi. Sed turpis orci, laoreet vel molestie posuere, accumsan vel massa. Integer facilisis mollis mi, nec tempor tortor rhoncus non. Praesent tempor augue at gravida vestibulum. Pellentesque sodales placerat lacus quis pulvinar. Nam dictum non magna ut tristique. Vivamus a mauris tempus, volutpat sapien consequat, vehicula lorem. Maecenas posuere, turpis ac blandit aliquam, nisl eros sodales augue, id pharetra arcu erat non sapien. Aliquam volutpat ultrices risus vel rhoncus. Maecenas at orci viverra, placerat leo a, tempus lectus. Fusce sollicitudin condimentum facilisis.</p>
</article>
please what can i do from here thanks

This will be so much stressful for you. Your question shows you have little or no knowledge about this.
What I'll advice is just move to WordPress and save yourself the stress. WordPress is made for that. If you continue using just html and css, you'll need to manually edit your homepage html page any time you add new articles. And this can be very stressful if you post often.
Just install WordPress and a nice theme and only worry about your contents and not the codes
Re: Please I Need Help On Html News Article by etoluw: 8:21pm On Mar 20, 2019
<ul>
<li><a href="#">home</a></li>
<li><a href="politics.html">politics</a></li>
<li><a href="about.html">about</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
Re: Please I Need Help On Html News Article by stanliwise(m): 11:24pm On Mar 20, 2019
Ogbonnaya1:
please am new in web development i am having issue and i need webmasters to help me solve my problem.

I am trying to build a blog with html and css, so when i write some articles on the index page how am i gonna link each article to the relevant section of my webpage for instance politics.html section
<!Doctype html>
<html>
<head>
<title>Html news articles</title>
<link rel="stylesheet" href="">
</head>
<body>
<header>

<a class="site-name" href="#">google.com</a>
<nav>
<ul>
<li><a href="#">home</a></li>
<li><a href="">politics.html</a></li>
<li><a href="">about</a></li>
<li><a href="">contact</a></li>
</ul>
</nav>
</header>

<main>
<article>
<header>
<h1>Article1</h1>
</header>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed arcu ipsum, finibus sed dui ut, scelerisque vehicula felis. Pellentesque non lacus dapibus, tristique tortor in, pellentesque nisi. Sed turpis orci, laoreet vel molestie posuere, accumsan vel massa. Integer facilisis mollis mi, nec tempor tortor rhoncus non. Praesent tempor augue at gravida vestibulum. Pellentesque sodales placerat lacus quis pulvinar. Nam dictum non magna ut tristique. Vivamus a mauris tempus, volutpat sapien consequat, vehicula lorem. Maecenas posuere, turpis ac blandit aliquam, nisl eros sodales augue, id pharetra arcu erat non sapien. Aliquam volutpat ultrices risus vel rhoncus. Maecenas at orci viverra, placerat leo a, tempus lectus. Fusce sollicitudin condimentum facilisis.</p>
</article>
please what can i do from here thanks

create a homepage and link every article using the <a> anchor tag. All articles and homepage should be in same folder.

On a serious note goto Blogger.com or WordPress.org and register a free blog.

1 Like

Re: Please I Need Help On Html News Article by Nobody: 8:00am On Mar 21, 2019
Julius2214:

This will be so much stressful for you. Your question shows you have little or no knowledge about this.
What I'll advice is just move to WordPress and save yourself the stress. WordPress is made for that. If you continue using just html and css, you'll need to manually edit your homepage html page any time you add new articles. And this can be very stressful if you post often.
Just install WordPress and a nice theme and only worry about your contents and not the codes
Thanks bro

(1) (Reply)

I Need A Good Forum Script With Admin / This How You Make Money Online By Teaching English Language / Please I Need A Usa Whatsapp Number

(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. 30
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.