2016-03-09T09:24:00-05:00
code for simple website in html
1
2016-03-18T15:48:04-0400
index.html: <html> <head> <title>Hello, world!</title> </head> <body> <h1>Home</h1> <ul> <li><a href="#">Home</a></li> <li><a href="about.html">About</a></li> </ul> <p> Lorem ipsum dolor </p> </body> </html> about.html: <html> <head> <title>Hello, world!</title> </head> <body> <h1>About</h1> <ul> <li><a href="index.html">Home</a></li> <li><a href="#">About</a></li> </ul> <p> Lorem ipsum dolor </p> </body> </html>
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS !
Comments