I want to move the paragraphn to the left side.
Also resizze the Font size in list item
table = new PdfPTable(2);
table.TotalWidth = 500f;
table.LockedWidth = true;
phrase = new Phrase();
phrase.Add(new Chunk("Work Experience:"+"\n\n", FontFactory.GetFont("Arial", 10, Font.BOLD)));
phrase.Add(new Chunk( txtDesc.Text.ToString() +"\n\n", FontFactory.GetFont("Arial", 8, Font.NORMAL)));
phrase.Add(new Chunk(txtComname.Text + "\n\n", FontFactory.GetFont("Arial", 5, Font.NORMAL)));
iTextSharp.text.ListItem li = new iTextSharp.text.ListItem();
List list = new List(List.UNORDERED,10f);
list.SetListSymbol("\u2022");
string s=FontFactory.GetFont("Arial",8,Font.NORMAL).ToString();
list.Add(txttask1.Text);
list.Add(txttask2.Text);
list.Add(txttask3.Text);
Paragraph p = new Paragraph();
p.Add(list);
cell.AddElement(p);
table.AddCell(PhraseCell(phrase, PdfPCell.ALIGN_LEFT));
table.AddCell(cell);

