Saturday, 17 August 2024

link website ๐Ÿ’ป

 


How TO - Make a Static Website

A static website has fixed content

It does not require programming languages to build one.

It is the easiest form of website to create.

Static websites are build of HTML, CSS, and JavaScript.

Get started for free »

Why create a static website?

Static websites are quick and easy to create.

It is cheap to host.

Static websites are secure.

It is fun and you can create awesome sites with HTML, CSS, and JavaScript.


What do I need to know to build a static website

HTML, CSS and JavaScript are the basic languages to build any website.

  1. Create the structure with HTML. The first thing you have to learn, is HTML, which is the standard markup language for creating web pages.
  2. Learn HTML »
  3. Style with CSS. The next step is to learn CSS, to set the layout of your web page with beautiful colors, fonts, and much more.
  4. Learn CSS »
  5. Make it interactive with JavaScript. After studying HTML and CSS, you should learn JavaScript to create dynamic and interactive web pages for your users.
  6. Learn JavaScript »

The best way to learn is to get practical. Start building today!


Create a static website with W3Schools Spaces

Spaces is a personal place where you can build and experiment with code and host your website.

With Spaces you can build static sites with HTML, CSS, and JavaScript.

Everything you need right in the browser.

Learn more »


How do I get started

There are two ways to start building a static website.

Building from scratch or using a template.

html css

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="anshu " content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href=  
<title>Links website</title>
<script src="https://unpkg.com/feather-icons"></script>

<style>

body {
  background-image: url("https://www.w3schools.com/howto/img_link_tree_template3_bg.jpg"); /* The image used for background */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

.container {
  width: 100%;
  height: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.name {
  ANSHU YADAV: 15px !important;
}

.w3-theme-d3 {
  background-color: rgba(42, 169, 219, 0.6) !important;
}

.w3-theme-d3:hover {
  background-color: rgba(42, 169, 219, 0.8) !important;
}

a {
  font-size: x-large;
}

.w3-border {
  border: 3px solid #ccc !important;
}

.links-container {
  display: flex;
  flex-direction: column;
  jusify-content: center;
  align-items: center;
}

.links-container a {
  width: 80%;
}

.profession {
  font-size: 14px;
}

.subscribe {
  font-size: 15px;
}

.submit form {
  display: flex;
  flex-direction: column;
}

.submit form button {
  margin-top: 5px;
  background-color: rgba(27, 122, 159, 0.9) !important;
  color: #fff !important;
}

.submit form button:hover {
  background-color: rgba(15, 67, 87, 0.9) !important;
  color: #fff !important;
}
.submit form input {
  width: 100% !important;
}
.submit form input::placeholder {
  color: #fff;
}

.icons {
  display: flex;
  gap: 40px;
}

.icons a {
  text-decoration: none;
}

.icons a svg {
  fill: #d0ecf7;
  transform: scale(1.5);
}

@media screen and (min-width: 768px) {
  .link {
    width: 100%;
  }
}
@media screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  .profession {
    font-size: 24px;
  }
}
</style>
  </head>

  <body>
    <!-- Content container -->
    <div class="container">

      <!-- Image and name container. Change to your picture here. -->
      <div class="" style="text-align: center">
        <img src="C:\Users\91808\Downloads\profile-pic.png" class="w3-round" alt="person image" width="250px" height="200px" style="border-radius: 50%; border: 5px solid #4ab6e0 !important; margin-top: 16px;">
        <p class="name"><br><span class="w3-padding w3-theme-l1 w3-margin w3-round" style="font-weight: bolder; font-size: x-large; border: 3px solid #1b7a9f;">Hey. I'm Anshu !</span></p><br>
        <p><span class="profession w3-padding w3-theme-d5 w3-round" style="font-weight: bolder; border: 3px solid #d0ecf7;">I am a mountain climber!</span></p><br>
      </div>

      <!-- Links section 1. Replace the # inside of the "" with your links. -->
      <div class="links-container">
        <a href="#" class="w3-button w3-round w3-theme-d3 w3-border link" target="_blank">MY CLIMBS</a>
        <br>
        <a href="#" class="w3-button w3-round w3-theme-d3 w3-border link" target="_blank">EXPEDITIONS</a>
        <br>
        <a href="#" class="w3-button w3-round w3-theme-d3 w3-border link" target="_blank">MY WORKOUT</a>
        <br>
        <a href="#" class="w3-button w3-round w3-theme-d3 w3-border link" target="_blank">MY BLOG</a><br>
        <br>
        <p><span class="subscribe w3-padding w3-theme-d5 w3-round" style="font-weight: bolder; border: 3px solid #d0ecf7;">Subscribe to my news!</span></p>
        <div class="submit" style="width: 80%;">
          <form>
            <input class="w3-input w3-round w3-theme-d3 w3-border" type="text" placeholder="Your email . . . " name="email">
            <button class="w3-button w3-round w3-border" type="submit">SUBSCRIBE</button>
          </form>
        </div><br>
        <div class="icons w3-padding">
          <a href="#" target="_blank">
            <i data-feather="facebook"></i>
          </a>
          <a href="#" target="_blank">
            <i data-feather="instagram"></i>
          </a>
          <a href="#" target="_blank">
            <i data-feather="linkedin"></i>
          </a>
          <a href="#" target="_blank">
            <i data-feather="twitter"></i>
          </a>
        </div>
      </div>

    </div>
    <script>
      feather.replace()
    </script>
  </body>  </html>



Wednesday, 14 August 2024

How TO - Create a Free Website Create Your First Website with ANASHU Blogger

 

How TO - Create a       

Free Website
Create Your First Website with 

Anshu blogger





W3Schools Spaces is a personal place where you can build and experiment with code and host your own website.

With W3Schools Spaces you can build with HTML, CSS and JavaScript.

Edit code directly in your browser.

Upload and host your files and images.

Start to grow your online presence today!


Why Build with W3Schools Spaces?

Spaces is made by web developers for web developers.

  1. The interface is simple and easy to use.
  2. Host and edit your files right in the browser.
  3. Free templates.

It is free to get started and you do not have to enter your credit card.


Edit and Preview Code

The editor is easy to use - which helps you to focus on the most imporant things.

Check the responsiveness of your site with the different preview alternatives.

Preview changes on your site, live!

What Do I Need to Know to Get Started?

HTML, CSS and JavaScript are the foundational languages to build a website.

  1. Create the structure with HTML. The first thing you have to learn, is HTML, which is the standard markup language for creating web pages.
  2. Learn HTML »
  3. Style with CSS. The next step is to learn CSS, to set the layout of your web page with beautiful colors, fonts, and much more.
  4. Learn CSS »
  5. Make it interactive with JavaScript. After studying HTML and CSS, you should learn JavaScript to create dynamic and interactive web pages for your users.
  6. Learn JavaScript »

Lets Get Started in a Few Steps

Do you already have a W3Schools Account? If so, skip the first step


Step One: Sign Up For an Account

To be able to use Spaces you need to sign up and get your account.

Lets get you set up!

Go to W3Schools Profile - Click "Sign up" and enter your email and password, then click the "Sign up for free" button.

How TO - Create a Free Website

code html

     <!DOCTYPE html>

<html lang="en">

<head>

<title>Page Title</title>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1">

<style>

body {

  font-family: Arial, Helvetica, sans-serif;

}

</style>

</head>

<body>


<h1>My Website</h1>

<p>A website created by me.</p>



<div class="header">

  <h1>My Website</h1>

  <p>A website created by me.</p>

</div>

.header {

  padding: 80px; /* some padding */

  text-align: center; /* center the text */

  background: #1abc9c; /* green background */

  color: white; /* white text color */

}


/* Increase the font size of the <h1> element */

.header h1 {

  font-size: 40px;

}

<div class="navbar">

  <a href="#">Link</a>

  <a href="#">Link</a>

  <a href="#">Link</a>

  <a href="#" class="right">Link</a>

</div>

/* Style the top navigation bar */

.navbar {

  overflow: hidden; /* Hide overflow */

  background-color: #333; /* Dark background color */

}


/* Style the navigation bar links */

.navbar a {

  float: left; /* Make sure that the links stay side-by-side */

  display: block; /* Change the display to block, for responsive reasons (see below) */

  color: white; /* White text color */

  text-align: center; /* Center the text */

  padding: 14px 20px; /* Add some padding */

  text-decoration: none; /* Remove underline */

}


/* Right-aligned link */

.navbar a.right {

  float: right; /* Float a link to the right */

}


/* Change color on hover/mouse-over */

.navbar a:hover {

  background-color: #ddd; /* Grey background color */

  color: black; /* Black text color */

}

<div class="row">

  <div class="side">...</div>

  <div class="main">...</div>

</div>

/* Ensure proper sizing */

* {

  box-sizing: border-box;

}


/* Column container */

.row {

  display: flex;

  flex-wrap: wrap;

}


/* Create two unequal columns that sits next to each other */

/* Sidebar/left column */

.side {

  flex: 30%; /* Set the width of the sidebar */

  background-color: #f1f1f1; /* Grey background color */

  padding: 20px; /* Some padding */

}


/* Main column */

.main {

  flex: 70%; /* Set the width of the main content */

  background-color: white; /* White background color */

  padding: 20px; /* Some padding */

}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 700px) {

  .row {

    flex-direction: column;

  }

}


/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */

@media screen and (max-width: 400px) {

  .navbar a {

    float: none;

    width: 100%;

  }

}

<div class="footer">

  <h2>Footer</h2>

</div>

.footer {

  padding: 20px; /* Some padding */

  text-align: center; /* Center text*/

  background: #ddd; /* Grey background */

}

</body>

</html>


Friday, 7 July 2023

TO Dosto Ap Bhi Gar Badthe He Paise Kamana Chahte ho To Fatafatb linke ko open kase

To Dosto Apka Swagat Hi AK. YADUANSHI .TECHANICAL  


   YouTube Par Blog Kaise Banaye เค”เคฐ เคชैเคธे เค•ैเคธे เค•เคฎाเค? เคคเคฐीเค•े เค•े เคฌाเคฐे เคฎें เคนै เคœिเคธเคฎें เคนเคฎ เค†เคชเค•ो Blogger เคชเคฐ เคฏूเคŸ्เคฏूเคฌ เคฌ्เคฒॉเค— เคฏा เคฏूเคŸ्เคฏूเคฌ เคšैเคจเคฒ เค•ा เคฌ्เคฒॉเค— เคฌเคจाเคจे เค•ा เคคเคฐीเค•ा เคฌเคคाเค‰ंเค—ा เคœिเคธเคธे เค†เคช เค†เคธाเคจी เคธे เคฌ्เคฒॉเค— เคฌเคจाเค•เคฐ เคชैเคธा เค•เคฎा เคธเค•เคคे เคนै din ka 400-500 tak kamsakte hai 

เคฆोเคธ्เคคो เค†เคœ เค•े เคธเคฎเคฏ เคฎें เค‘เคจเคฒाเค‡เคจ เคชैเคธा เค•เคฎाเคจे เค•ा เคเค• เคฌेเคนเคคเคฐ เคคเคฐीเค•ा Youtube เค”เคฐ Blog เคนी เคนै เค‡เคธเคฒिเค เค…เคงिเค•เคคเคฐ เคฒोเค— Youtube Channel เคฏा Blog เคฌเคจा เคฐเคนे เคนै เคœिเคธเคฎें เค•ुเค› เคฒोเค—ो เค•ो เคฆुเคตिเคงा เคนै  to Dosto to baj ham sabse pahle bolgger ko ham banate hai jo ham ap ko ap ni kudki web saiod bande hai 

https://akyaduvanshitechnical.blogspot.com/2023/06/ghar-baithe-hi-google-se-website-banaen.html   dosto to nye link hai  

เคฌ्เคฒॉเค— เค•्เคฏा เคนोเคคा เคนै?

เคฆोเคธ्เคคो เคฌ्เคฒॉเค— เคเค• เคตेเคฌเคธाเค‡เคŸ เค•ी เคคเคฐเคน เคนोเคคा เคนै เคœिเคธเคฎें เคœ्เคฏाเคฆा เคธे เคœ्เคฏाเคฆा เค•िเคธी เคŸॉเคชिเค• เค•ी เคœाเคจเค•ाเคฐी Text เค•े เคฐूเคช เคฎें เคฒिเค–ी เคœाเคคी เคนै เค”เคฐ เค‰เคธे เค‡ंเคŸเคฐเคจेเคŸ เคชเคฐ เคถेเคฏเคฐ เค•ी เคœाเคคी เคนै เคœिเคธे เคฆुเคจिเคฏाँ เค•ा เค•ोเคˆ เคญी เคต्เคฏเค•्เคคि เค—ूเค—เคฒ เคฏा เค•िเคธी เคธเคฐ्เคš เค‡ंเคœเคจ, เคฌ्เคฐाเคŠเคœเคฐ เค•े เคฆ्เคตाเคฐा เคธเคฐ्เคš เค•เคฐ เคธเค•เคคा เคนै เค”เคฐ เค‰เคธे เคชเคข़ เค•เคฐ เคœाเคจเค•ाเคฐी เคช्เคฐाเคช्เคค เค•เคฐ เคธเค•เคคा เคนै

YouTube เคชเคฐ Blog เค•ैเคธे เคฌเคจाเคฏे





Wednesday, 5 July 2023

 AK YADUVANSHI TECHNICAL  

                                                          ME AP KA WELCOME HAI DOSTO 

Kay ap instgram pr follwor badhana chahte  hai dosto 

to sab se pahale ap pna instagarm open karee

Relevant Hashtags เค•ा เค‡เคธ्เคคेเคฎाเคฒ เค•เคฐे ...

Consistently Post เค•เคฐे 

  1. High-Quality Visuals เค•ा เค‡เคธ्เคคेเคฎाเคฒ เค•เคฐे 
  2. เค…เคชเคจे Audience เค•े เคธाเคฅ เคœुเคก़े เคฐเคนे ...
  3. Other Brands เค”เคฐ Influencers เค•े เคธाเคฅ Collaborate เค•เคฐे ...
  4. insta Stories เค•ा เค‡เคธ्เคคेเคฎाเคฒ เค•เคฐे ...
  5.  เค”เคฐ Contests Host เค•เคฐे
  6.   Reels เค•ा เค‡เคธ्เคคेเคฎाเคฒ เค•เคฐे\

link par jaye https://akyaduvanshitechnical.blogspot.com/2023/07/dasto-google-ki-new-setting-googel-ko.html ok karo






Sunday, 2 July 2023

Dasto google ki new setting googel ko ham kahi bhi le ja sakte hai chahe uper chahe nechi

   AK Yadauvanshi technical  


 เคฏเคน เคŸ्เคฐिเค• เคฌेเคนเคฆ เคฎเคœेเคฆाเคฐ เคนै।  Google เค•े เคนोเคฎเคชेเคœ เคชเคฐ เคœाเค•เคฐ เคœเคฌ เค†เคช Google Gravity เคŸाเค‡เคช เค•เคฐें เค”เคฐ  เคฌเคŸเคจ เคชเคฐ เคŸैเคช เค•เคฐेंเค—े เคคो Google เค•ा เคชेเคœ เคฌเคฆเคฒ เคœाเคเค—ा เค”เคฐ เคธเคญी เค•ुเค› เคจीเคšे เค•ी เคคเคฐเคซ เค—िเคฐ เคœाเคเค—ा


เค—्เคฐेเคตिเคŸी เค•े เคธाเคฅ เค–ेเคฒเคจे เค•े เคฒिเค เค†เคชเค•ो เคฎुเค–्เคฏ Google เค–ोเคœ เคชृเคท्เค  เคชเคฐ เคนोเคจा เคนोเค—ा। เคธเคฐ्เคš เคฌाเคฐ เคฎें เค—ूเค—เคฒ เค—्เคฐेเคตिเคŸी เคŸाเค‡เคช เค•เคฐें เค”เคฐ เค†เคˆ เคเคฎ เคซीเคฒिंเค— เคฒเค•ी เคชเคฐ เค•्เคฒिเค• เค•เคฐें। " เคฌเคŸเคจ, เคœो เค–ोเคœ เคซ़ीเคฒ्เคก เค•े เค ीเค• เคจीเคšे เคนै, เค†เคชเค•ो เคธीเคงे Google เค–ोเคœ เคชृเคท्เค  เค•े เค—्เคฐेเคตिเคŸी เคธंเคธ्เค•เคฐเคฃ เคชเคฐ เคฒे เคœाเคคा เคนै। 2-07-2023 
uske bad dostro kuch ass dikhne lage ga 


ANSHU YADAV BLOGGER.COM  AK YADAVANSHI TECHNICAL 


Monday, 19 June 2023

FREE 50GB DATA PLAN FOR ALL NETWORK

 

FREE 50GB DATA PLAN FOR ALL NETWORKS.

James and Esther Wambui153kComments337Share
Like
Comments
Ernest Zibokere Thank you for this free 50GB data, Iam inviting all my friends to get this free 50GB data too....
Like Reply 1m
Lydia Chioma I followed all the verification steps and after 5 minutes I found my line credited with 50GB data valid for 2 Months, iam so happy right now.
Like Reply 1m
Fredrick Okoth I still can't believe that I was one of the few people listed to receive this free 50GB. Thank you, I got 50GB.
Like Reply 1m
Ibrahim Olawale Wonderful ... even you got 30GB like me?
Like Reply 1m
Sunday Promise is writing a comment...
Sana khan Data Reward has the best service ever. Thank you for the free 50GB you gave me, God bless you.
Like Reply 20m

ANSHU YADAV 

Saturday, 17 June 2023

Ghar Baithe Hi Google Se Website banaen

 Blogger  (เคฌ्เคฒॉเค—เคฐ)

Blogger เค•ा เคนिंเคฆी เคฎें เคฎเคคเคฒเคฌ เคšिเคŸ्เค ाเค•ाเคฐ เคนोเคคा เคนै, เค•เคนीं เค‡เคธे เคนिंเคฆी เคฎें เคญी เคฌ्เคฒॉเค—เคฐ เคนी เค•เคนा เคœाเคคा เคนै. เค…เค—เคฐ เคถाเคฌ्เคฆिเค• เค…เคฐ्เคฅ เค•ी เคฌाเคค เค•เคฐें เคคो เคเค• เคเคธा เคต्เคฏเค•्เคคि เคœो เคจिเคฏเคฎिเคค เคฐूเคช เคธे เค…เคชเคจे Blog เคชเคฐ เค†เคฐ्เคŸिเค•เคฒ เคฒिเค–เคคा เคนै aur website banaen Ghar baithe banye



(1) blogger.com
(2)uske bad dosto aisa interface khulega apke samne


 (3) ap apne ghar par websaid banasakte hai 
(4) 5 post ke bad pasha aane lage ga 
(5) 250-300 sart me milne lagege
(6) kuch bhi post kar ye 



AK 

how to open vs code (html css java pph) creat calculator

  H TML calculator   is used for performing basic mathematical operations like Addition, subtraction, multiplication, and division. You can ...