Skip to main content

How can I center this piece of text? It seems simple to complete this particular task, but it wont work out

The piece of text, "We do photography and videography", must be centered. I tried using the text-align command and justifying the content to the center. I'm thinking that it must have something to do with the way I have positioned the whole body of the HTML file. Help would be appreciated

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>PRODUX NA</title>
        <link rel="stylesheet" type="text/css" href="style.css">
        <link rel = "stylesheet" type = "text/css" href = "reset.css"/>
        <link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@600&family=Roboto+Condensed:wght@300&display=swap" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,300&display=swap" rel="stylesheet">
    </head>
    <body>
        <nav>
            <a href="index.html">
                <img class="logo" src="1 NA.png" width="50" height="50">
            </a>
            <ul>
                <li>
                    <a href="index.html">Home</a>
                </li>
                <li>
                    <a href="about.html">About Me</a>
                </li>
                <li>
                    <a href="contacts.html">Contacts</a>
                </li>
                <li>
                    <a href="portfolio.html">Portfolio</a>
                </li>
            </ul>
        </nav>
        <div id="textAndButtonContainer">
          <div id="text">

          </div>
          <div class="container">
              <a href="commence.html">
                  <button id="button1">Get Started</button>
              </a>
          </div>
        </div>

        <script type = "text/javascript">
            var i = 0,text;
            text = "All your favorite memories in one film."

            function typing(){
                if(i < text.length){
                    document.getElementById("text").innerHTML += text.charAt(i);
                    i++
                    setTimeout(typing, 50);
                }
            }
            typing();
        </script>
        <h3 class="pv">We do photography and videography.</h3>
    </body>
</html>

* {
  margin: 0;
  padding: 0;
}
  
body {
    height: 100vh;
    width: 50vh;
    background-image: linear-gradient(rgba(68, 67, 67, 0.75), rgba(58, 58, 58, 0.75)), url(4kcamera.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    justify-content: center;
}
  
nav {
    width: 100%;
    height: 80px;
    position: fixed;
  
}
  
.logo{
    float: left;
    padding: 0 30px;
    margin-left: 55px;
    margin-right: 30px;
    width: 50px;
    margin-top: 20px;
}

ul li {
    list-style: none;
    display: inline-block;
    line-height: 90px;
    padding: 0 31px;
}
  
ul {
    margin-left: 840px;
}
  
ul li a {
    text-decoration: none;
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgb(250, 250, 250);
}
  
ul li a:hover {
    color: rgb(102, 151, 241);
    transition-duration: 0.5s;
}
  
#text{ 
    transform: uppercase;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
    font-size: 60px;
}

#textAndButtonContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
}
  
.container {
    display: flex;
    justify-content: center;
}
  
#button1 {
    background-color: rgb(30, 109, 255);
    border: 2px;
    border-radius: 15px 50px;
    color: white;
    padding: 35px;
    margin: 22px;
    text-align: center;
    font-size: 13px;
    font-family: 'Poppins', Helvetica;
}

#button1:hover {
    background-color: rgb(19, 66, 165);
    color: white;
    transition-duration: 0.4s;
}

.apptmnt {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    font-family: 'Poppins', sans-serif;
    color: white; 
    font-size: 45px;
}

.apptmnt2 {
    position: absolute;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    font-family: 'Poppins', sans-serif;
    color: white;      
}

.pv {
    position: inherit;
    text-align: center;
}

I'm doing completing this as a personal project, which would have a great effect. Centering this piece of text in the most simplified way would be great and could help me apply it to any other situation.

Via Active questions tagged javascript - Stack Overflow https://ift.tt/2FdjaAW

Comments

Popular posts from this blog

ValueError: X has 10 features, but LinearRegression is expecting 1 features as input

So, I am trying to predict the model but its throwing error like it has 10 features but it expacts only 1. So I am confused can anyone help me with it? more importantly its not working for me when my friend runs it. It works perfectly fine dose anyone know the reason about it? cv = KFold(n_splits = 10) all_loss = [] for i in range(9): # 1st for loop over polynomial orders poly_order = i X_train = make_polynomial(x, poly_order) loss_at_order = [] # initiate a set to collect loss for CV for train_index, test_index in cv.split(X_train): print('TRAIN:', train_index, 'TEST:', test_index) X_train_cv, X_test_cv = X_train[train_index], X_test[test_index] t_train_cv, t_test_cv = t[train_index], t[test_index] reg.fit(X_train_cv, t_train_cv) loss_at_order.append(np.mean((t_test_cv - reg.predict(X_test_cv))**2)) # collect loss at fold all_loss.append(np.mean(loss_at_order)) # collect loss at order plt.plot(np.log(al...

Sorting large arrays of big numeric stings

I was solving bigSorting() problem from hackerrank: Consider an array of numeric strings where each string is a positive number with anywhere from to digits. Sort the array's elements in non-decreasing, or ascending order of their integer values and return the sorted array. I know it works as follows: def bigSorting(unsorted): return sorted(unsorted, key=int) But I didnt guess this approach earlier. Initially I tried below: def bigSorting(unsorted): int_unsorted = [int(i) for i in unsorted] int_sorted = sorted(int_unsorted) return [str(i) for i in int_sorted] However, for some of the test cases, it was showing time limit exceeded. Why is it so? PS: I dont know exactly what those test cases were as hacker rank does not reveal all test cases. source https://stackoverflow.com/questions/73007397/sorting-large-arrays-of-big-numeric-stings

How to load Javascript with imported modules?

I am trying to import modules from tensorflowjs, and below is my code. test.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title </head> <body> <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@2.0.0/dist/tf.min.js"></script> <script type="module" src="./test.js"></script> </body> </html> test.js import * as tf from "./node_modules/@tensorflow/tfjs"; import {loadGraphModel} from "./node_modules/@tensorflow/tfjs-converter"; const MODEL_URL = './model.json'; const model = await loadGraphModel(MODEL_URL); const cat = document.getElementById('cat'); model.execute(tf.browser.fromPixels(cat)); Besides, I run the server using python -m http.server in my command prompt(Windows 10), and this is the error prompt in the console log of my browser: Failed to loa...