<h1> WELCOME TO MY FIRST WEBSITE</h1>
<img src="web photos\candles.jpg" alt="vin the programmer>
<p>My name is <h2><strong>VINCENT EVERGREEN
N.</strong></h2> this is is my first website. i am learning html and
web design with tutorials at <a href="http://www.ict.social">
ICT.SOCIAL</a>
To know more about me, visit my <a href="contactpage.html"> CONTACT PAGE
</a> thank you and you are highly welcome.</p>
My main challenge is how And where to put my link to CSS page In the html
document... Please start the linking from the head so that I can get the linking
steps... Thanks IT MAN
And what's the problem, CSS doesn't work at all? Can you post your CSS file
as well or upload the whole website somewhere and post me the link so I can
check it?
my aside content can get borders assist me please.
my html code
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<title>GOOD LIVING</title>
<link rel="stylesheet" href="glv.css"/>
</head>
<body>
<div class="container">
<header>
<img src="images/logo.JPG" alt="logo area"class="logo"/>
<nav class="top_nav">
<ul>
<li><a href="">HOME </a></li>
<li><a href="">ABOUT </a></li>
<li><a href="">CONTACTS </a></li>
<li><a href="">DOWNLOADS</a></li>
<li><a href="">BLOG </a></li>
</ul>
</nav>
<div class="clear"></div>
</header>
<section class="left_side">
<article>
<header>
<h2> this is the article header<H2>
<h3>this is the subtitle</h3>
</header>
<p>this is paragraph 1</p>
<p>this is paragraph 2</p>
<footer>
-written by lawre
</footer>
</article>
</section>
well guys thanks alot, am now trying to create a login system using php and
no matter how i try i cant connect the pages to my local host server which is
xampp any one who can help me please ill be greatiful
You should create new thread in PHP forum - https://www.ict.social/php/php-forum
Don't forget to add your code inside tags for code so we can see what you got
QA engineers are responsible for testing the software's performance https://mlsdev.com . They check
that different components are functional and that the solution provides a
sufficient level of security. They also check compatibility with other
applications. They also check for bugs in previously-tested code, especially
when adding new features or updates. Moreover, they use automated testing tools
to ensure that the software meets its specifications.
Well, there are some logical issue with your code:
Try below code once for better output.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="style.css" type="text/css" />
<title>index.html</title>
</head>
<body>
<h1> WELCOME TO MY FIRST WEBSITE</h1>
<img src="web photos\candles.jpg" alt="vin the programmer">
<p>My name is <strong>VINCENT EVERGREEN N.</strong> this is my first website. I am learning HTML and web design with tutorials at <a href="http://www.ict.social">ICT.SOCIAL</a>.
To know more about me, visit my <a href="contactpage.html">CONTACT PAGE</a>. Thank you, and you are highly welcome.</p>
</body>
</html>
Question is old however I would like to give my opinion on this.
Well, you have missed CSS link, you can try belos code where CSS link has been
added.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="style.css">
<title>index.html</title>
</head>
<body>
<h1>WELCOME TO MY FIRST WEBSITE</h1>
<img src="web photos/candles.jpg" alt="vin the programmer">
<p>My name is <h2><strong>VINCENT EVERGREEN N.</strong></h2> this is my first website. I am learning HTML and web design with tutorials at <a href="http://www.ict.social">ICT.SOCIAL</a>. To know more about me, visit my <a href="contactpage.html">CONTACT PAGE</a>. Thank you, and you are highly welcome.</p>
</body>
</html>