Thursday, September 26, 2013

Week 5 Class Learning


This week’s class was one of the most interesting classes and it was really important to me. Every website needs to have a contact form and is one of the things that we can’t really go without that.  Usually anyone who comes to a website always looks for contact information to make sure they can contact someone if there is a problem or they need something. In this week class I learned how to make a contact form for a website and how to add all kind of information in there. The code below is an example of a simple contact code for a website.

            <form name ="Registration" action ="confirmation.html" method ="post">
            First Name : <input type ="text" name = "f_name"/> <br />
            Last Name : <input type ="text" name = "l_name"/><br />
            Gender: <input type = "radio" name = "gender" value = "female"/> Female <input type = "radio" name = "gender" value = "male"/> Male <br />
            Address : <input type ="text" name = "address" size = "40"/> <br />
            City: <input type ="text" name = "city" size = "15"/>
            State:
            <select name = "state">
                        <option>Georgia</option>
                        <option>New York</option>
            </select>
            zip  : <input type ="text" name = "zip" size = "5"/> <br />
            <h3>Comments</h3>
            <textarea name="comments" rows ="6" cols = "30">
            </textarea> <br />
            <input type="submit" value = "submit">
</form>

In addition of making a form I learned how I can upload a video into my website or webpage. For uploading a video from my camera there is a couple programs that I have to use, but to be able to get a code and be able to upload it I have to use a program called Adobe Media Encoder CS5.5. I always wanted to know how I can share a YouTube video into my page and I surprisingly found out that it’s not hard at all. For uploading a video  from other sources into my webpage all I have to do is to click on the share button and then below the share click on Embed and copy the code below it and post it to my code area for a webpage. This is simple enough to have a video on a webpage from another video source. These two interactive media were really helpful to help me achieve what I wanted to in my organization website.

No comments:

Post a Comment