marlinpaul
marlinpaul
PHPTPOINT
431 posts
PHPTPOINT is the one stop web developing and designing company and also a educational hub for programming languages.  https://www.phptpoint.com/  
Don't wanna be here? Send us removal request.
marlinpaul · 3 years ago
Photo
Tumblr media
https://www.phptpoint.com/laravel-tutorial/
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Text
Bootstrap Tutorial for Beginners
What Is Bootstrap?
With HTML, CSS, and JavaScript-based design templates for practically everything, including but not limited to: typography, forms, buttons, navigation, and other components, Bootstrap is a well-known JS/CSS framework for creating responsive and mobile-first websites.
Bootstrap focuses on making the creation of educational web sites easier. To apply Bootstrap's color, size, font, and layout selections to that project is the main goal of adding it to a web project. The most recent version of Bootstrap, known as Bootstrap 5, has new components, a quicker stylesheet, and improved responsiveness.
Given its wide use, a very significant aspect of Bootstrap tutorial is that it is actively supported and versioned by programmers and open-source enthusiasts.
Reasons to use Bootstrap
Bootstrap is the best option if you're new to development and want to build your own gorgeous, responsive website. All you need to get started is a working knowledge of HTML, CSS, and JavaScript. There are many templates, themes, and tools that can assist you in beginning the process of making a website. If you want a distinctive appearance, all you have to do now is customize the designs.
Development Speed
Bootstrap's pre-written code blocks can save you a tonne of time during development because you won't have to start from scratch. You can select from a variety of pre-made themes and designs with Bootstrap. There are many additional places where you may get designs and layouts, both for free and for a fee.
Resources and community support
On its official website and numerous other websites, Bootstrap provides a wealth of resources. Full documentation for Bootstrap is available on its website, which is helpful when building websites. Additionally, they give you access to designs and layouts that you can employ.
Responsiveness
We'd all want to browse a website that is optimized for the screen size we're now utilizing. a website that you can read the material on without having to zoom in or out. This is where Bootstrap really shines; it has a responsive design by default, and with its fantastic grid structure and responsive utility classes, building a responsive website is simple.
Customization
The ability to customize Bootstrap is a fantastic benefit. You can use templates to avoid having to come up with something from scratch, but you can also modify everything if you want it to have a certain appearance. You must build your own custom CSS file, make the necessary adjustments, and then include the CSS file in the website's HTML code to achieve this.
Consistency
This was the main driver for the creation of Bootstrap. Bootstrap ensures that results are consistent across all platforms regardless of who is working on a project.
Open Source
In order to address the difficulties with the user interface, Bootstrap was created on Twitter in 2010. It was made available as open-source in 2011. Since then, it has expanded to become the most widely used front-end development framework.
Read More
Visit Here https://www.phptpoint.com/bootstrap-tutorial/
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Link
0 notes
marlinpaul · 3 years ago
Text
HTML TUTORIAL
What is HTML ?
HTML stands for HyperText Markup Language. It is used to layout web pages the use of the markup language. HTML is the aggregate of Hypertext and Markup language. Hypertext defines the hyperlink among the internet pages and markup language defines the textual content report in the tag that outline the shape of internet pages.
What is HTML used for ?
HTML is used to create the shape of internet pages which might be displayed at the World Wide Web (www). It includes Tags and Attributes which might be used to layout the internet pages. Also, we will hyperlink more than one pages the use of Hyperlinks.
HTML Basic Format Page Structure
The fundamental shape of an HTML web page is laid out below. It includes the important building-block factors (i.e. doctype announcement, HTML, head, title, and frame factors) upon which all internet pages are created.
– A doctype or report kind declaration is an instruction that tells the internet browser approximately the markup language wherein the cutting-edge web page is written. It isn't an detail or tag. The doctype declaration isn't case-sensitive.
– This tag is used to outline the foundation detail of HTML report. This tag tells the browser that it's miles an HTML report. It is the second one outer field detail that includes all different factors inside it.
– This tag is used to outline the top part of the HTML report that includes records associated with the report. Elements in the head tag aren't seen at the the front-stop of a webpage.
– The frame tag is used to surround all of the seen content material of a webpage. In different words, the frame content material is what the browser will display at the the front stop.
Login Form in HTML5
Through this HTML tutorial you learn how to create a Login Form using HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head> <body> <table width="345" border="1" bgcolor="#99CC00"> <tr> <th height="34">Enter your username</th> <td><input type="email"/></td> </tr> <tr> <th height="33">Enter your passowrd</th> <td><input type="password"/></td> </tr> <tr> <th height="39" colspan="2"><input type="submit" value="SignIn"/> <a href="#">SignUp</a></th> </tr> </table> </body> </html>
Output
Read More Visit Here https://www.phptpoint.com/html-tutorial/
0 notes
marlinpaul · 3 years ago
Link
0 notes