Skip to main content

Beauty Must-Haves for Summer

Here are Some Tips For beauty in Summer

Cocoa butter, shea butter and mango butter: Soothing emollients for the skin, all three soften and hydrate. These heavy butters are great as body moisturisers. “Mango butter, in particular is a wonderful soothing agent for dry, rough hands and feet,” says Dr Madhuri Agarwal, medical head (West), Kaya Skin Clinic. Mainly full of vegetable fat, they are a safe bet for most skin types. 

Vitamin E: A powerful repair agent for the body, it helps in building new collagen and elastin in skin and hair. Plus, the lipid (fat)-soluble vitamin E products get absorbed easily by the skin. It also has anti-inflammatory properties. 

Coconut oil: Natural nourishment for the skin, it keeps the skin soft and supple. It’s great for the hair too, since it protects against dryness and helps to keep it healthy. Also, virgin coconut oil is considered safe for all skin types and almost never causes allergies. But avoid using oils on your face, particularly if you suffer from acne.

Jojoba Oil: A seed extract, this is similar to the sebum oil secreted by the skin’s sebaceous glands. It’s a wonderful moisturiser for the skin and hair. A stable molecule, this does not get oxidised and so has a long shelf life. But a patch test before use is recommended, particularly if you are allergic to oils or herb-based products. Avoid using if you suffer from asthma. 

Olive oil: A perfect remedy for dry skin. It lubricates the skin and restores lost moisture, keeping the skin soft and supple. However, do an allergy test before using olive oil products as it does not suit all skin types. 

Beeswax: This wax is obtained from the honeycomb. Beeswax is similar to oils in function, as it forms a protective barrier on the skin. It works very well for dry skin and eczema. Since it’s very thick, it can be used as a night moisturiser for all over the body. It is ideal for chapped lips and dry elbows. 

Honey: Known for its anti-bacterial properties, honey is an excellent natural wound healer. Therefore, it is a good remedy for chilblains. As an anti-oxidant, it fights toxins and protects the skin from free radicals.

Comments

Popular posts from this blog

show image in asp.net form from database

In order to show image from database to webform first add an image control in webpage.   <asp:Image ID="imgStudentImage" runat="server" Height="157px" Width="160px" /> Then add new webform to read image from database for example displayimage.aspx and in code behind model write the following code. public string str = //your string     public SqlConnection conn;     public SqlCommand sql = new SqlCommand();     public SqlDataReader dr;     public string strSQL;     protected void Page_Load(object sender, EventArgs e)     {         conn = new SqlConnection(str);         conn.Open();         long id = Convert.ToInt64(Request.QueryString["mId"]);         strSQL = "";         strSQL = strSQL + " SELECT snap from S...

Export Doc,Access,Image,CSV,Excel,Pdf,XML,HTML,Text,Print of Gridview in Asp.net

First import itextsharp.dll in the solution and use three namespces (basically for pdf) using iTextSharp.text; using iTextSharp.text.pdf; using iTextSharp.text.html.simpleparser;          Then Use the following code :- on each button  click  protected void Page_Load(object sender, EventArgs e)         {             if (!Page.IsPostBack)             {                 BindGridDetails(GridView1);             }         }                 protected DataTable BindGridDetails(GridView GridView1)         {   ...

Advent of code 2022 day 22 part 1

  function main(input, input1) {     let grid = input.split( '\n' );     grid.shift();     // only in big input     for ( let i = 0 ; i < 100 ; i++) {         grid[i] = '                                                  ' + grid[i];     }     //console.log(grid[100])     grid = grid.map(x => x.split( '' ))     // find first left top allowed     let temppos = - 1 ;     grid[ 0 ].forEach((element, i) => {         if (temppos == - 1 && element == '.' ) {             temppos = i;         }     });     let initpos = new pos(temppos, 0 )     // console.log(initpos)     // make grid equal shape     let...