Jump to content

Gavin121

Members
  • Posts

    8
  • Joined

  • Last visited

Gavin121's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Gavin121

    DTD for XML

    Ok, ive changed them. Did you have a look at the original question?Do you think it does what has been asked?I've added the XML aswell.
  2. Gavin121

    DTD for XML

    Ok, this is what ive come up with:<!DOCTYPE root-element[element-delclarations]><?xml version = "1.0"?><!DOCTYPE Emp [<!ELEMENT Emp( ename, Children, Skills)><!ELEMENT ename (#PCDATA)><!ELEMENT Children(name, Birthday)><!ELEMENT name (#PCDATA)><!ELEMENT Birthday (day, month, year)><!ELEMENT day (#PCDATA)><!ELEMENT month (#PCDATA)><!ELEMENT year (#PCDATA)><!ELEMENT Skills (type, Exams)><!ELEMENT type (#PCDATA)><!ELEMENT Exams (year, city)><!ELEMENT year (#PCData)><!ELEMENT city (#PCDATA)>Is this ok? Have I done anything wrong?Thanks!
  3. Gavin121

    DTD for XML

    Hi, ive got the following task:Give the DTD for an XML representation of the following nested relational schema.Emp =(ename, ChildrenSet setof(Children), SkillsSet setof(Skills))Children =(name, Birthday)Birthday = (day, month, year)Skills = (type, ExamsSet setof(Exams))Exams = (year, city)I'm really lost on how to do this. Any help would be great. Ive read the tutorials. Just think i need some more help!Thanks!
  4. Gavin121

    CSS Rule

    Thanks, I'm going to work on it. Ill post what I get, any tips/suggestions would be good.Thanks!
  5. Gavin121

    CSS Rule

    Ive had a look but I cant find much I can add. Any ideas?
  6. Gavin121

    CSS Rule

    The only thing I was concerned about was that the question:Write a CSS rule, make all text 1.5 times bigger and set to red. This is a 10 mark question!Seems a bit simplistic!Anything more I can stick in it? Something more advanced?
  7. Gavin121

    CSS Rule

    I've got this so far:<html><head><style type="text/css">p {font-size: 150%}p {color:red}</style></head><body><p>This is the first paragraph</p><p>This is the second paragraph</p></body></html>How about that? Anygood? Anything more I need?
  8. Gavin121

    CSS Rule

    Hi people,I've got the following task:Write a CSS Rule that makes all the text 1.5 times larger than the base font of the system and colours it to red.I dont really know how.A example would be great, thanks!
×
×
  • Create New...