1. Introduction to Salesforce Definition : Salesforce is the #1 Cloud-based CRM (Customer Relationship Management) platform that helps businesses manage relationships with customers, automate business processes, and analyze performance. Founded : 1999 by Marc Benioff. Type : SaaS (Software as a Service). Tagline : "No Software" – because everything runs on the cloud, without local installations. 2. Why Salesforce? Traditional CRMs were expensive and required servers, installations, and IT staff. Salesforce revolutionized CRM by moving everything to the cloud . Benefits: 🚀 Faster implementation ☁️ Cloud-based (accessible anywhere) 🔄 Customizable without coding (point-and-click tools) 🤝 Strong ecosystem & AppExchange (marketplace like Google Play for Salesforce apps) 🔐 Security & scalability 3. Salesforce Products & Cloud Offerings Salesforce is not just CRM; it has multiple clouds (modules) for different busine...
1) Create style.css to provide propeties to HTML Tag
*
{
margin:0px;
}
header
{
height:100px;
background-color: gray;
}
section
{
height:500px;
background-color: orange;
}
footer
{
height:100px;
background-color: gray;
}
2) Create header.jsp and link css file
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<nav>
<ul><li><a href="index.jsp">Home </a></li> <li><a href="about.jsp">About us </a></li><li><a href="service.jsp">Our Services </a></li><li><a href="contact.jsp">Contact us </a></li><li><a href="gallery.jsp">Gallery</a></li></ul>
</nav>
<marquee> <h3 style="color:red;">JOIN INDUSTRIAL TRAINING TO BTECH,MCA,MSC,BCA,BBA Students</h3> </marquee>
</header>
3) Create Footer.jsp
<footer>
</footer>
</body>
</html>
4) Create Index.jsp remove all html and define section and include header.jsp and footer.jsp
<%@include file="header.jsp" %><section>
</section>
<%@include file="footer.jsp" %>
5) Create <nav> to create menu or navigation and define respective css tag
<nav>
<ul><li><a href="index.jsp">Home </a></li> <li><a href="about.jsp">About us </a></li><li><a href="service.jsp">Our Services </a></li><li><a href="contact.jsp">Contact us </a></li><li><a href="gallery.jsp">Gallery</a></li></ul>
</nav>
6) create about.jsp,service.jsp,contact.jsp,gallery.jsp etc
Comments
Post a Comment
POST Answer of Questions and ASK to Doubt