You are on page 1of 4

hover – Se activa cuando pasas el mouse sobre un elemento

header .profile-image:hover {

transform: scale(1.2) rotate(360deg);

Front End Development

 HTML

 CSS

 JavaScript

Back End Development

 Python

 Java

 Ruby

Website vs. Web Application: What’s the Difference?

 A website is informational
 A web application is interactive

A web application is a web site that the user can control.


https://www.seguetech.com/website-vs-web-application-whats-the-difference/

A website is defined by its content, while a web application is defined by its interaction
with the user.

New Tags

 <!DOCTYPE html> - A piece of code that tells the browser what kind of information it’s getting, so that it
can display your web page properly.

 <html> - All of your code must be between tags.

 <head> - Hold all the important behind-the-scenes information about your web page, like the title of your
web page, and a links to a CSS stylesheets.
 <title> - Stuff between title tags doesn’t appear on the web page, but you’ll see it in search engine results and
browser tabs.

 <body> - Everything that displays in the browser -- header, navigation, images, content -- goes between the
body tags.

ALT – Alternative Tags

HREF – Hypertext Reference

Anchor Tag

<a href="MiPágina.html">Anchor text</a>

ul -Unordered list. For listing things that do not need to be in any specific order. Navigation menus are

often created with unordered lists, and are styled with CSS to display horizontally.

ol -Ordered list. A list that is automatically numbered.

li - list item

<ul>

<li> Item 1 </li>

<li> Item 2 </li>

</ul>

letter-spacing: 2px;

You might also like