Help with some basic coding please?

Status
Not open for further replies.

mils89

Beta member
Messages
3
Hi everyone,

I know next to nothing about html coding so I'm not even sure if this will make sense, but here goes

I am trying to help a friend add some information to her scrapbooking website. She has a page that needs 4 sections of text with pics added as it is biographies of her design team members. It is a basic page with white background and black text! Nothing fancy or special!! Is it possible for someone to please help with just the codes that we put in before and after the text and pictures?

I am so sorry if this is a huge ask, I don't even know if it is or not lol If so, could you maybe please point me in some direction fo where I could get some help?
She cannot get ahold of the person who set up her website for her.

Thank you so much
 
Gladly - what website?

A simple 2x2 table would look like this:
Code:
<table>
  <tr>
    <td>Top-Left Text Here</td>
    <td>Top-Right Text Here</td>
  </tr>
  <tr>
    <td>Bottom-Left Text Here</td>
    <td>Bottom-Right Text Here</td>
  </tr>
</table>
And to put a picture, just add <img src="picturename"/> wherever you want it. You can also use an online WYSIWYG editor with ease,
This makes it just like using Word, in fact, you could use Word and save the file as a .html. But yeah. :)
 
Status
Not open for further replies.
Back
Top Bottom