Advertisement
Evyatar12

About.aspx

Dec 28th, 2017
694
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.32 KB | None | 0 0
  1. <%@ Page Title="" Language="C#" MasterPageFile="~/MainMaster.master" AutoEventWireup="true" CodeFile="About.aspx.cs" Inherits="About" %>
  2.  
  3. <asp:Content ID="Content1" ContentPlaceHolderID="title" Runat="Server">
  4.     About
  5. </asp:Content>
  6.  
  7. <asp:Content ID="Content2" ContentPlaceHolderID="head" Runat="Server">
  8.     <link rel="stylesheet" href="Content/forms.css" type="text/css" media="all" />
  9. </asp:Content>
  10.  
  11.  
  12. <asp:Content ID="Content3" ContentPlaceHolderID="PageContent" Runat="Server">
  13.     <div>
  14.         <div>
  15.             <h1>Who Am I?</h1>
  16.             <p>My name is Evyatar. I am 16 years old.</p>
  17.             <p>I am a student at Oded High School and an aspiring developer in my free time.</p>
  18.             <p>I enjoy playing video games and doing maths as well.</p>
  19.         </div>
  20.  
  21.         <div>
  22.             <h1>What is this website?</h1>
  23.             <p>This website serves as a project for my Computer Science Bagrut.</p>
  24.             <p>In this website I have provided the visitors with information about different communication programs that can be used online.</p>
  25.             <p>
  26.                 I also present my skills as a website developer in this website, you may see here different examples of them such as:
  27.                 <ul>
  28.                     <li>Usage of databases</li>
  29.                     <li>Usage of browser sessions</li>
  30.                     <li>Programming in ASP.NET \ C#</li>
  31.                 </ul>
  32.             </p>
  33.         </div>
  34.  
  35.         <div>
  36.             <h1>Contact me</h1>
  37.             <p>You may contact me by sending a message to this email; <a href="mailto:[email protected]">[email protected]</a></p>
  38.  
  39.             <br />
  40.             <p>Or by filling the form below:</p>
  41.  
  42.             <form class="form">
  43.                 <div>
  44.                     <input name="name" type="text" placeholder="Your Name" class="input"/>
  45.                     <input name="name" type="email" placeholder="Email" class="input"/>
  46.                 </div>
  47.  
  48.                 <div>
  49.                     <textarea name="reason" placeholder="What would you like to tell me? :)" class="input"></textarea>
  50.                 </div>
  51.  
  52.                 <div>
  53.                     <input type="submit" value="Done" class="input submit"/>
  54.                 </div>
  55.             </form>
  56.         </div>
  57.     </div>
  58. </asp:Content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement