Ancient Greek Pottery: Types, History & Facts

Praveen Varghese Thomas
Updated on 11-Dec-2023 13:21:38

62 Views

Introduction Ancient Greek pottery is a form of fine art that was produced in ancient Greece between the 11th century BCE and the 4th century CE. Pottery production was a widespread and important industry in ancient Greece, with many city-states, such as Athens, Corinth, and Thebes, having their own pottery workshops. Ancient Greek pottery was primarily made from clay and fired at high temperatures. The art of pottery production in ancient Greece was passed down from generation to generation. Ancient Greek pottery is considered some of the finest in the ancient world and has been widely exported throughout ... Read More

Art of Ancient Greece's Classical Period

Praveen Varghese Thomas
Updated on 11-Dec-2023 13:09:49

278 Views

Introduction The Classical period in ancient Greece was a time of great cultural and artistic achievement, lasting from the 5th to 4th centuries BCE. This period is characterized by a focus on realism and the ideal human form in art, with the use of the contrapposto stance in sculptures and the portrayal of mythological and historical scenes. The classical period also saw the development of the Corinthian order of architecture, and the use of the golden ratio in composition. The primary materials used were marble and bronze, and many examples of classical period art can still be seen ... Read More

How to create a responsive inline form with CSS?

AmitDiwan
Updated on 08-Dec-2023 16:53:28

3K+ Views

A responsive inline form is a form in which all the elements are inline, aligned on the left, with the specific labels. To display the responsiveness i.e., when the web browser is resized, we have set the inline form to stack all the input fields on top of each other. This concept works on smaller screens. Let us see how to create a responsiveness inline form with CSS. Create a form To create a form, use the element. We have set two input fields and a button in our form − Email: ... Read More

How to create a responsive image with CSS?

AmitDiwan
Updated on 08-Dec-2023 16:50:54

480 Views

To create a responsive image, first set an image using the element. Use the width and max-width properties to set the same image to a responsive image. Set an image To set an image on a web page, use the element. The link of the image is included using the src attribute of the element − Above, we have also used the alt attribute for the alternate text. Set the responsiveness The width is set to 100% to convert an image to responsive. Also, you need to set the max-width property − img ... Read More

How to create a responsive Image Grid with HTML and CSS?

AmitDiwan
Updated on 08-Dec-2023 16:49:39

5K+ Views

The image grid on a web page displays images in a grid. In an outer grid, we can create inner grids. Also, the responsiveness needs to be set for the image grid for different devices. On a web browser, check the responsiveness by resizing the web browser. Let us see how to create a responsive image grid with HTML and CSS. Set the outer and inner grid A div for the outer grid is set. Within that, the inner grids are set. We have set three inner grids inside our outer grid − ... Read More

How to create a responsive header with CSS?

AmitDiwan
Updated on 08-Dec-2023 16:47:46

3K+ Views

On a web page, first the header is visible, then the content, and at the end the footer. A header includes the logo of the website and the menu. It can also include a search box on the right. The menus are created using the element. The selected link is always highlighted. On hovering any link, the color of that specific link change. Let us see how to create a responsive header with CSS on a web page. Set the nav for logo and menus The element is used to place the logo and menus. Both these are ... Read More

How to create a responsive form with CSS?

AmitDiwan
Updated on 08-Dec-2023 16:45:17

4K+ Views

A form on a web page can be used to get the user details for registration such as name, username, email-id, password, security question, etc. With that, a form can be created to get only the user details such as name, email-id, phone number, message, etc. as a contact us form. The responsiveness allows changing the layout of the form on different devices. It can be checked on a web browser by changing the tab size. Let us see how to create a responsive form with CSS on a web page. Set the form fields for registration First, the user ... Read More

How to create a responsive cutout/knockout text with CSS?

AmitDiwan
Updated on 08-Dec-2023 16:41:16

144 Views

A responsive knockout text transforms when the web browser size is changed. A knockout text looks like it's been cut out of a surface to reveal the background. First, we will place a background image on the web page using the background-image property. The text will be placed using the position property. To transform, the translate() will be used. Set the background image To create a knockout text, first set the background image on which the text will appear. The background image will be included using the background-image property with the url() − background-image: url("https://images.pexels.com/photos/957024/forest-trees-perspective-bright-957024.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"); The container for ... Read More

How to create a responsive contact section for web pages?

AmitDiwan
Updated on 08-Dec-2023 16:37:34

163 Views

On a contact us page, you must have seen input fields to add your name, email-id, phone number, message, etc. A button is also placed for the user to submit the contact form. With that, some websites also add an image that aligns properly when the web browser is resized i.e., the responsiveness. Let us see how to create a responsive contact section for web pages on a website with CSS. Set the contact image Begin with the heading and set an image representing a contact us page − Position the image ... Read More

How to create a responsive checkout form with CSS?

AmitDiwan
Updated on 08-Dec-2023 16:32:58

731 Views

A checkout on a web page can be seen on an E-Commerce website. It is a webpage where all the details about the product you are buying is visible. It includes the product details, total amount to be paid, the card details to be entered, the billing address. Also includes a button to proceed the buying process. Let us see how to create a responsive checkout form. Set a flex To arrange the fields, use the display property and set it to flex − .Fields { display: flex; flex-wrap: wrap; ... Read More

Advertisements