Looks alright to me.. although you might want to change Photo to a BLOB if you're going to store the actual image in the database. Also you might want to make PersonID an autoincrementing int(11) as such:
(the following uses MySQL syntax/features)
CREATE TABLE bio (
PersonID INT NOT NULL AUTO_INCREMENT,
Overview TEXT,
Gender VARCHAR(5),
FirstName VARCHAR(50),
SurName VARCHAR(5),
DOB DATE,
DOD DATE,
Country VARCHAR(50),
Attributes TEXT,
Achievements TEXT,
Bio TEXT,
Links TEXT,
Quotes TEXT,
Photo BLO😎;