Review


HTML

The HTML language is used in the Internet. An HTML document is a text file; it opens with Internet Explorer, Google Chrome, or other browser. The HTML language is based on tags. The most common tasks are <html<, <head>, <body>, <title>, <br />, <b> and <i>. For instance to display NYC in bold, the HTML code is <b>NYC</bglt;; to display Los Angeles in italics, the HTML code is <i>Los Angeles</i>. In the last few years, HTML has become one of the most popular languages.
El lenguaje de HTML es usado en la Internet. Un documento de HTML es un archivo de texto; este puede abrirse con Internet Explorer, Google Chrome, u otro explorador. El lenguaje está basado en etiquetas. Las etiquetas más comunes son <html>, <head>, <body>, <title>, <br />, <b> and <i>. Por ejemplo, para mostrar NYC in negritas, el código de HTML es <b>NYC</b>; para mostrar los Los Angeles en itálicas, el código HTML es <i>Los Angeles</i>.

Problem 1
Open Notepad and write the text shown below. Save your file as MyPage.htm. Be sure to save the file as MyPage.htm and not as MyPage.htm.txt. Once the file has been saved, double click the file to open it in the explorer.
Abra el Block de Notas y escriba el texto mostrado debajo. Guarde su archivo como MyPage.htm. Asegúrese de guardar el archivo como MyPage.htm y no como MyPage.htm.txt. Una vez que el archivo ha sido guardado, haga doble clic en él para abrirlo en el explorador.

MyPage1

MyPage2

Problem 2
Write a program called Html to create an HTML document (*.htm) from personal information contained in some textboxes as shown.
Escriba un programa llamado Html para crear un documento de html (*.htm) desde la información personal contenida en algunas cajas de texto como se muestra.

Html1

ChooseColor

Html3

Html4

Html5

Html.h
#pragma once //______________________________________ Html.h
#include "resource.h"

class Html: public Win::Dialog
{
public:
     Html()
     {
          color = RGB(255, 255, 255); // White: red 255, green 255, blue 255
     }
     ~Html()
     {
     }
     COLORREF color;
protected:
     ...
};

Html.cpp
void Html::Window_Open(Win::Event& e)
{
}

void Html::btCreate_Click(Win::Event& e)
{
     Win::FileDlg dlg;
     dlg.SetFilter(L"Web document (*.htm)\0*.htm\0\0", 0, L"htm");
     if (dlg.BeginDialog(hWnd, L"Save the Web document", true))
     {
          Sys::File archivo;
          wstring text;
          archivo.CreateForWritting(dlg.GetFileNameFullPath());
          archivo.WriteText(L"<html>\r\n <head>\r\n <title>");
          ...
          Sys::Format(text, L"\t<body style=\"background=#%02x%02x%02x\">\r\n", GetRValue(color),
               GetGValue(color), GetBValue(color));
          archivo.WriteText(text);
          //_________________________________________ name
          ...
          //_________________________________________ age
          ...
          //_________________________________________ movie
          ..
          //_________________________________________ close the tags: body and html
          ...
     }
}

void Html::btColor_Click(Win::Event& e)
{
}

© Copyright 2000-2021 Wintempla selo. All Rights Reserved. Jul 22 2021. Home