Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1.  
  2. Unit 1 Day 3 Classwork #2
  3.  
  4. 3 points
  5.  
  6. Minor Assessment
  7.  
  8. Shantanu Saha9:00 AM
  9.  
  10. 1 class comment
  11.  
  12. Create the web page [username]-u1d3.html
  13. The web page will contain the following content:
  14. - a list of six html elements that you have learned thus far, along with descriptions. The elements must display properly on the page (1 pt)
  15. -a sentence in Spanish or French that includes diacritical marks (1 pt)
  16. The web page will contain a properly coded <head> element with <title> and <style> elements (1 pt)
  17.  
  18. Your work
  19.  
  20. Turned inEstigfend
  21.  
  22. 22barciag-u1d3.html
  23.  
  24. HTML
  25.  
  26. Unsubmit
  27.  
  28. Private comments
  29.  
  30. Add private comment…
  31.  
  32. <!DOCTYPE html> <html> <head> <title>Six HTML Elements and a Sentence in Spanish</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> </style> <body style="background-color:powderblue;"> <style> div.a { text-align: center; } div.b { text-align: justify; } </style> <div class="a"> <h1 style="font-size:40px;"><u>Six HTML Elements that I have Learned and a Sentence in Spanish</u></h1> <div class="b"> <p>&bull; To write a heading, you must write &lt;h1>Something here&lt;/h1></p> <p>&bull; To write a title, you must write &lt;head> &lt;title>Something like This&lt;/title> &lt;/head> <p style="color:DodgerBlue;">&bull; To write in color, you must write &lt;p style="color:DodgerBlue;">Something like this&lt;/p></p></p> <p>&bull; To change the color of your page's background, you must type:&lt;body style="background-color:powderblue;"></p> <p>&bull; To change the centering of your text, you must type &lt;style> div.a { text-align: center; } div.b { text-align: justify; } &lt;/style> then type &lt;div class="a"> or "b" before the text you want to change. </p> <p>&bull; To add an image to your website, you must add &lt;img src="url"> </p> <h2>Hola, y gracias por leer mi archivo html que describe seis códigos en html. Estos seis códigos son códigos útiles que usará mucho. </h2> </body> </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement