Calvin (Deutschbein)
25 January 2023
Which of the following adjectives did we not select as a class to describe a "good" thesis.
Consider your answer. Did we arrive at a good list?
Which of the following adjectives did we not select as a class to describe a "good" thesis.
Consider your answer. Did we arrive at a good list?
Which of the following adjectival phrases did we not select as a class to describe a "good" thesis.
Consider your answer. Did we arrive at a good list?
SCENE: 22 January, 2008
Web Hypertext Application Technology Working Group dares to ask...
"What if the Internet, instead of being bad, was good?"
... and launches HTML5, the greatest and final HTML standard.
Languages
Both
Theses
HTML5
Both
English
HTML5, as a language intentionally constructed for shared communication, constitutes a valuable tool for teaching writing in a holistic curriculum emphasizing generalizable skills such as peer revision, authorial best practices, and clarity of personal thought.
English
HTML5
An HTML element can be decomposed into three constituent components:
Some HTML elements with no content will only contain a free-standing tag.
void main(int argc, const char * argv[])
public static void main(String[] args)
Tags are denoted using special keywords enclosed inside special characters.
<
and a closing >
.
</
and a closing >
.
Here are some common tags:
Keyword | Tags | Descriptor |
---|---|---|
p |
|
Paragraph, often also used for sentences because English is not good. |
strong |
|
Text meant to be denoted with additional "strength". |
br |
|
A line break, and an example of a void element. |
{h1,... h6} |
|
Text meant as a header, like a title. h1 is used in search optimization. |
We can use HTML5 elements to characterize content, which may include sentences or words, and provide context.
HTML5, as a language intentionally constructed for shared communication, constitutes a valuable tool for teaching writing in a holistic curriculum emphasizing generalizable skills such as peer revision, authorial best practices, and clarity of personal thought.
In this case, the content is a thesis statement.
Let's use HTML element syntax to identify what type of content we have - a sentence.
HTML5, as a language intentionally constructed for shared communication, constitutes a valuable tool for teaching writing in a holistic curriculum emphasizing generalizable skills such as peer revision, authorial best practices, and clarity of personal thought.
Most HTML styles do not have a sentence type, we simply use it here as a teaching tool.
By convention, to make HTML easier to read, for multi-line elements we indent content and give the tags their own lines.
<sentence>
HTML5, as a language intentionally constructed for shared communication,constitutes a valuable tool for teaching writing in a holistic curriculum emphasizing generalizable skills such as peer revision, authorial best practices, and clarity of personal thought.
</sentence>
Most HTML styles do not have a sentence type, we simply use it here as a teaching tool.
While not an HTML requirement, a complete sentence in English must contain a subject and a predicate.
<sentence>
HTML5, as a language intentionally constructed for shared communication,
constitutes a valuable tool for teaching writing in a holistic curriculum emphasizing generalizable skills such as peer revision, authorial best practices, and clarity of personal thought.
</sentence>
<sentence>
<subject>
HTML5, as a language intentionally constructed for shared communication,
</subject>
<predicate>
constitutes a valuable tool for teaching writing in a holistic curriculum emphasizing generalizable skills such as peer revision, authorial best practices, and clarity of personal thought.
</predicate>
</sentence>
... a holistic curriculum emphasizing generalizable skills such as ...
peer revision, authorial best practices, and clarity of personal thought.
Are these the same kind of thing?
While we figure out what these are, we'll use "skill" for now.
<skill>
peer revision
</skill>
<skill>
authorial best practices
</skill>
<skill>
clarity of personal thought
</skill>
Wait a minute - is that a skill?
<skill>
authorial best practices
</skill>
If not, either our thesis statement or our thinking is unclear!
Let's figure out what we are trying to say
<skill>
disambiguated text construction
</skill>
Is this the same kind of thing?
Are these noun phrases?
<nounphrase>
peer revision
</nounphrase>
<nounphrase>
disambiguated text construction
</nounphrase>
Are these noun phrases?
<nounphrase>
<adjectivalphrase>
peer
</adjectivalphrase>
<noun>
revision
</noun>
</nounphrase>
Wait - disambiguated is an adjective* - is this correct?
<nounphrase>
<adjectivalphrase>
disambiguated text
</adjectivalphrase>
<noun>
construction
</noun>
</nounphrase>
<nounphrase>
<adjective>
disambiguated
</adjective>
<nounphrase>
text construction
</nounphrase>
</nounphrase>
<nounphrase>
<adjective>
text
</adjective>
<noun>
construction
</noun>
</nounphrase>
In English, how can determine if "disambiguated text construction" refers to:
Or perhaps
HTML offers a solution of essentially labelled parenthesis.
You know enough HTML elements ...
... and Syntax...
to convert your website to be HTML specified.
Due Wednesday, 01 February!