Advertisement
JcGaming

Introduction to Web Technologies activity#2

Oct 5th, 2023 (edited)
1,598
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.40 KB | Source Code | 0 0
  1. <!--Preview Link: https://html-starter-dun-nine.vercel.app/ -->
  2. <!--I did it fast because I was coding at Library-->
  3.  
  4. <html>
  5.     <head> <!--This is the title-->
  6.         <title>This is my first WebPage</title>
  7.         <style>
  8.             .navbar {
  9.                 position: fixed;
  10.                 left: 50%;
  11.                 bottom: 0;
  12.                 transform: translateX(-50%);
  13.             }
  14.         </style>
  15.     </head>
  16.     <body>
  17.         <!--Prints my name-->
  18.         <h1>John Carl Quieta</h1>
  19.         <!--Displays my email, contact no., and address with different color, face and size-->
  20.         <h3><i>My Email: </i> <font face="Arial" color="Red" size="5"> jquieta@paterostechnological.edu.ph</font> </h3>
  21.         <h3><font size="10">My Contact No.: </font><font face="fantasy" size="7" color="green"> 0941355371</font> </h3>
  22.         <h3><font size ="20">My Address: </font> <font face="MONACO" size="30" color="cyan"> Makati City</font></h3>
  23.  
  24.         <!--This is 4 sentences and uses text formatting-->
  25.         <p><b>Hi!,</b>I am <b><i><font color="#9933ff"> John Carl Quieta</font></i></b>. From <b><font color="lime">Makati City</font></b>. I am currently studying at <b>Pateros Technological College</b>. I am <mark>2nd year College Student taking my Certificate in Computer Science</mark></p>
  26.  
  27.         <h2>My Hobby and Skills:</h2>
  28.         <ul>
  29.             <li>Technical</li>
  30.             <li>Microsoft</li>
  31.             <li>Programming</li>
  32.             <pre>
  33.             <img src=" https://th.bing.com/th/id/OIP.WNn7cntaQ-8FxZ6LPa-aNgHaHk?pid=ImgDet&rs=1" alt="ptc" width="200" height="200"> <img src="https://cdn2.iconfinder.com/data/icons/education-icons-4/200/SCHOOL15-512.png" alt="school" width="200" height="200"> <img src="https://cdn.icon-icons.com/icons2/2643/PNG/512/male_boy_person_people_avatar_icon_159358.png" alt="boy" width="200" height="200"> <img src="https://th.bing.com/th/id/OIP.nBwIfauMfjWd0qbnifW7YgHaHa?pid=ImgDet&rs=1" alt="library" width="200" height="200"> <img src="https://th.bing.com/th/id/OIP.9bpuD961fuAlMDSS0K_ZSwHaIC?pid=ImgDet&rs=1" alt="grad" width="200" height="200">
  34.             </pre>
  35.  
  36.             <!-- Navigation bar -->
  37.             <div class="navbar">
  38.                 <a href="https://facebook.com">Facebook</a>
  39.                 <a href="https://google.com">Google</a>
  40.                 <a href="https://youtube.com">Youtube</a>
  41.             </div>
  42.  
  43.     </body>
  44. </html>
  45.  
Tags: html vscode
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement