- First web page
- Comments in HTML
- Paragraph in HTML
- Style in HTML
- Text Formatting in HTML
- Quotation In HTML
- Links In HTML
- IMG In HTML
- List In HTML
- Tables In HTML
- Forms In HTML
- CSS Basics and Comments
- CSS color
- CSS background color
- CSS Box Model
- CSS Outline,text,fonts
- CSS Links,List,Tables
- CSS position
- CSS Display
- CSS Nav Bar
- CSS Drop Down
- CSS Height,Width
- CSS Float
- CSS OverFlow
- CSS Icons
- CSS Image
- CSS Form
- Bootstrap is a popular front-end framework for building responsive and mobile-first websites and web applications. It provides a collection of pre-designed HTML, CSS, and JavaScript components that can be easily customized and integrated into your projects. With Bootstrap, you can quickly create visually appealing and consistent layouts across different devices and screen sizes. It simplifies the development process by offering ready-to-use components like buttons, forms, navigation bars, and grids, saving you time and effort. Whether you're a beginner or an experienced developer, Bootstrap offers a powerful toolkit to enhance your web development workflow.
- Basic knowledge About python
- This repository contains examples and explanations of basic Python programming concepts.
- Print Statement: Demonstrates how to use the
print()
function to output text. - List: Explains what lists are and how to create and manipulate them.
- Tuple: Introduction to tuples, immutable sequences in Python.
- Dictionary: Explanation of dictionaries and their usage for key-value pairs.
- Data Types: Overview of basic data types in Python, including integers, floats, strings, and booleans.
- Boolean: Explanation of boolean values (
True
andFalse
) and their usage in Python. - For Loop: Examples of
for
loops for iterating over sequences like lists and strings. - While Loop: Explanation and examples of
while
loops for repeated execution based on a condition. - Files: Demonstrates file input/output operations using
open()
,read()
,write()
, andclose()
functions.
Each concept is covered in a separate Python script within the repository. You can run each script individually to see the examples in action. For instance:
python print_statement.py
- Flask Setup
- Dynamic Flask
- Render HTML
Flask Example with Bootstrap:
- Delete
- Update
-
Image view using web camera.
-
Front/Homepage:
This repository contains a Flask application designed to fetch random memes from an API and display them on a webpage. It serves as a basic example of integrating Flask with external APIs and rendering dynamic content on a website.
- Flask App: The main application is built using Flask, a lightweight web framework for Python.
- Meme Fetching Function: The
get_memes()
function fetches random memes from the "https://meme-api.com/gimme" API endpoint using therequests
module. It parses the JSON response and extracts the meme URL and subreddit. - Route Definition: The
/
route in the Flask app is defined to render theindex.html
template. This template displays the fetched meme along with its subreddit if available.
-
Clone the repository:
git clone https://github.com/your-username/flask-meme-Website.git