Learning Group For Web Technologies

Discussion in 'Education & Personal Growth' started by reca, Sep 29, 2016.

  1. reca

    reca Silver IL'ite

    Messages:
    193
    Likes Received:
    183
    Trophy Points:
    93
    Gender:
    Female
    Hello Ladies,
    Here is my day 8 update:

    Day 8:
    We saw the <h1></h1> heading tag in the previous update.
    There are 5 more heading tags. <h2> to <h6> tags.
    <h1> is the biggest size heading and <h6> is the smallest heading.


    HTML links:
    <a> tag is used to define links. This is a very important tag.
    This is the tag used to link one document with other.
    example: <a href="The latest fashion & beauty trends, opinion, celebrity news | Marie Claire">This is a link to MarieClaire Website</a>
    We can have any number of <a> tags in a webpage. When we click on the link, the target webpage is displayed in the same window.

    href in the<a> tag is called the attribute and it holds the link to where the navigation should happen.
    There will be attribute-value pair inside the tags to enhance the features offered by the html tags.

    Code:
    <!Doctype HTML>
      <html>
       <head>
          <title>My web Page</title>
       </head>
       <body>
           <h1> This is Heading 1 </h1>
           <h2> This is Heading 2 </h2>
           <h3> This is Heading 3 </h3>
           <h4> This is Heading 4 </h4>
           <h5> This is Heading 5 </h5>
           <h6> This is Heading 6 </h6>
           
           <!-- This is a link--->
           <a href = "http://www.marieclaire.co.uk/"  target="_blank"> This is a link to MarieClaire Website </a>
    
         </body>
      </html>

    If we want to open the linked documents in the new tab, then there is an attribute called target.
    In the <a> tag notice the
    target attribute . It has the value "_blank". This means the link has to open in the new tab.
    Please copy the code into your notepad and save it with .html file extension.
    Open this file in the browser to watch the magic.
    Please feel free to discuss any queries here.
    Attachment of the executed code is made.
    Tagging : @Gauri03 , @Sunshine2020 , @Sparkle , @Pushhu ,@curiousgals78 ,@EagerForInfo ,@kaniths
    Good day to all :)






     

    Attached Files:

    curiousgals78 likes this.
  2. reca

    reca Silver IL'ite

    Messages:
    193
    Likes Received:
    183
    Trophy Points:
    93
    Gender:
    Female
    Hello Ladies,
    Here is my day 9 update:
    Day 9:
    Today I learnt something interesting and colorful. Using an Image in the webpage!
    Code:
    <!Doctype HTML>
      <html>
       <head>
          <title>Display a Picture</title>
       </head>
       <body>
          <a href="http://indusladies.com/community/">
              <img src="IL.jpg" alt="indusladies.com" width="1000" height="100">
          </a>
    
         </body>
      </html>
    :blush:
    We use an <img> tag to insert the image.
    it has an attribute called src which has the image file name.
    This image tag is nested in the previously discussed link tag <a></a>.
    When you execute the page, you see an image, when you click on the image, you will be navigated to the
    link Indusladies. Its our fav web application
    I am attaching the execution result.

    This is very interesting please give a try!
    Let us know if you need any help.
    Tagging @Gauri03 , @Sunshine2020 , @Sparkle , @Pushhu ,@curiousgals78 ,@EagerForInfo ,@kaniths
    Good day to all :)
    Best Regards,
    R
     

    Attached Files:

    curiousgals78 likes this.
  3. Arunaravi

    Arunaravi Silver IL'ite

    Messages:
    312
    Likes Received:
    66
    Trophy Points:
    68
    Gender:
    Female
    Very interesting.i am blessed coz today i wish to learn web designing.but i know only banking operations.hence searching.this post is really really useful to me.Thank u.
     
  4. Arunaravi

    Arunaravi Silver IL'ite

    Messages:
    312
    Likes Received:
    66
    Trophy Points:
    68
    Gender:
    Female
    where is day 2 to day 7 update? not seen.i cant understand the above.day 1 to straight day 8? in between?
    Aruna
     
  5. Arunaravi

    Arunaravi Silver IL'ite

    Messages:
    312
    Likes Received:
    66
    Trophy Points:
    68
    Gender:
    Female
    sorry. now only it came in the next page.hence sorry.
    Aruna
     
  6. Arunaravi

    Arunaravi Silver IL'ite

    Messages:
    312
    Likes Received:
    66
    Trophy Points:
    68
    Gender:
    Female
    Thank u
    Aruna
     
  7. reca

    reca Silver IL'ite

    Messages:
    193
    Likes Received:
    183
    Trophy Points:
    93
    Gender:
    Female
    Hello Ladies,
    I am Sorry I was stuck with hectic work and life !
    I would like to restart learning web development !
    Is anyone interested in joining me for learning HTML5, CSS3, Javascript and Jquery ?
     
    Last edited: Apr 27, 2018
  8. reca

    reca Silver IL'ite

    Messages:
    193
    Likes Received:
    183
    Trophy Points:
    93
    Gender:
    Female
    Hello Ladies,
    Here is my day 10 update !
    Day 10
    We have an html attribute called 'style'. We use this attribute to add color, background-color, font, font size etc to the page and content.
    <tagname style="property:value;"> is the syntax . The property is the css(cascading style sheet)property, value is the css value.

    This attribute is really exciting! it gives look and feel to the page . The colors you see on the web page is because of CSS. CSS is a seperate topic . but just to get taste of it, we first use it within the HTML element. This is called In-line CSS. Have a look at the below example .
    style="background-color: pink"
    here,

    1.style is the attribute
    2.backgound-color is the CSS property
    3.pink is the CSS value

    We can chain multiple css properties and values seperated by semi-colon like this :
    "color:red; background-color: yellow ; font-size:30px "

    Below is the example where the h1 tag and the p tags are styled.
    Just copy and paste below code it in notepad ... save note pad with .html file extension , right click on the file and open with chrome browser. voila! its funn !

    2018-04-27_10-50-30.jpg
    <!Doctype HTML>
    <html>
    <head>
    <title>Display Colors</title>
    </head>
    <body>

    <h1 style="background-color: pink;">Using 'STLYE' tag in HTML </h1>

    <p style="color:red; background-color: yellow ; font-size:30px "> As of 2017, text messages are used
    by youth and adults for personal, family and social purposes and in business.
    Governmental and non-governmental organizations use text messaging for communication between colleagues.
    As with emailing, in the 2010s, the sending of short informal messages has become an accepted part of many cultures.
    This makes texting a quick and easy way to communicate with friends and colleagues, including in contexts where a call would be impolite or inappropriate
    (e.g., calling very late at night or when one knows the other person is busy with family or work activities). Like e-mail and voice mail, and unlike calls
    (in which the caller hopes to speak directly with the recipient), texting does not require the caller and recipient to both be free at the same moment;
    this permits communication even between busy individuals. Text messages can also be used to interact with automated systems, for example, to order products
    or services from e-commerce websites, or to participate in online contests. Advertisers and service providers use direct text marketing to send messages
    to mobile users about promotions, payment due dates, and other notifications instead of using postal mail, email, or voicemail. </p>
    </body>
    </html>


    Do try and let me know how it looks !
    Thank you for going through the post :)
    Tagging : @Gauri03 , @Sunshine2020 , @Sparkle , @Pushhu ,@curiousgals78 ,@EagerForInfo ,@kaniths
    Best Regards,
    R
     
    Last edited: Apr 27, 2018
    Gauri03 likes this.
  9. shravs3

    shravs3 IL Hall of Fame

    Messages:
    3,207
    Likes Received:
    5,845
    Trophy Points:
    425
    Gender:
    Female
    Hi I’m also interested to learn UI stuff as it’s the most desired skill currently. Recently I saw some Nanodegree program in Udacity and it’s full stack web developer. Anyone has idea about it ?
     
  10. Gauri03

    Gauri03 Moderator Staff Member IL Hall of Fame

    Messages:
    6,211
    Likes Received:
    13,034
    Trophy Points:
    445
    Gender:
    Female
    Welcome back @reca ! I'd been wondering about you. Nice to see the thread active again.
     

Share This Page