64 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <title>Contact Us | SP Jain School of Global Management</title>
 | 
						|
    <meta content="width=device-width, initial-scale=1.0" name="viewport">
 | 
						|
    <meta content="Contact SP Jain, Support" name="keywords">
 | 
						|
    <meta content="Get in touch with SP Jain Global for admissions, inquiries, and support." name="description">
 | 
						|
 | 
						|
    <!-- Favicon -->
 | 
						|
    <link href="img/favicon.ico" rel="icon">
 | 
						|
 | 
						|
    <!-- Google Web Fonts -->
 | 
						|
    <link rel="preconnect" href="https://fonts.googleapis.com">
 | 
						|
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
 | 
						|
 | 
						|
    <!-- Font Awesome -->
 | 
						|
    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
 | 
						|
 | 
						|
    <!-- Bootstrap CSS -->
 | 
						|
    <link href="css/bootstrap.min.css" rel="stylesheet">
 | 
						|
    <link href="css/style.css" rel="stylesheet">
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
    <!-- Contact Section Start -->
 | 
						|
    <div class="container py-5">
 | 
						|
        <div class="text-center mb-5">
 | 
						|
            <h1>Contact Us</h1>
 | 
						|
        </div>
 | 
						|
        <div class="row">
 | 
						|
            <div class="col-lg-6">
 | 
						|
                <h5>Address</h5>
 | 
						|
                <p>SP Jain Campus, Sydney, Australia</p>
 | 
						|
                <h5>Email</h5>
 | 
						|
                <p>info@spjain.org</p>
 | 
						|
                <h5>Phone</h5>
 | 
						|
                <p>+123 456 789</p>
 | 
						|
            </div>
 | 
						|
            <div class="col-lg-6">
 | 
						|
                <form>
 | 
						|
                    <div class="form-group">
 | 
						|
                        <label for="name">Name</label>
 | 
						|
                        <input type="text" id="name" class="form-control">
 | 
						|
                    </div>
 | 
						|
                    <div class="form-group">
 | 
						|
                        <label for="email">Email</label>
 | 
						|
                        <input type="email" id="email" class="form-control">
 | 
						|
                    </div>
 | 
						|
                    <div class="form-group">
 | 
						|
                        <label for="message">Message</label>
 | 
						|
                        <textarea id="message" rows="4" class="form-control"></textarea>
 | 
						|
                    </div>
 | 
						|
                    <button class="btn btn-primary">Submit</button>
 | 
						|
                </form>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
    <!-- Contact Section End -->
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |