-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.aspx
46 lines (42 loc) · 2.62 KB
/
Default.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<div class="w3-container w3-dark-grey w3-center w3-text-white w3-padding-32" id="about">
<h1><b>Nilai University</b></h1>
<img src="/img/Nilai-University.jpg" alt="Me" class="w3-image w3-padding-32" width="600">
<div id="about" runat="server" class="w3-content w3-justify" style="max-width: 600px">
<h4>About Us</h4>
<p>
Nilai University received full 'university' status and is a private university in Nilai, Seremban District, Negeri Sembilan, Malaysia. The medium of instruction is English. Nilai U has three faculties offering diploma, bachelor's degree, master's degree and PhD programmes.
</p>
<hr class="w3-opacity">
<p>Mail: [email protected]</p>
<p>Phone: +60 6-850 2338</p>
<p>Address: No 1, Persiaran Universiti, Putra Nilai, 71800 Nilai, Negeri Sembilan, Malaysia</p>
<hr class="w3-opacity">
<!-- Contact section -->
<div class="w3-container w3-light-grey w3-padding-32 w3-padding-large" id="contact">
<div class="w3-content" style="max-width: 600px">
<h4 class="w3-center" id="contactus" runat="server"><b>Contact Us</b></h4>
<p>Do you want me to contact you? Fill out the form and fill me in with the details :) We love meeting new people!</p>
<form action="/action_page.php" target="_blank">
<div class="w3-section">
<label>Name</label>
<input class="w3-input w3-border" type="text" name="Name" required>
</div>
<div class="w3-section">
<label>Email</label>
<input class="w3-input w3-border" type="text" name="Email" required>
</div>
<div class="w3-section">
<label>Message</label>
<input class="w3-input w3-border" type="text" name="Message" required>
</div>
<button type="submit" class="w3-button w3-block w3-black w3-margin-bottom">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</asp:Content>