#WE know a bit of python but its like

1 messages · Page 1 of 1 (latest)

minor kraken
#

@shy sluice

#

yello

#

lets talk here, the main chat tends to have loits of chat

dapper otter
#

oo a thread okay

#

so basically its a website for my own company

#

we got the main site

shy sluice
#

hi

dapper otter
#

and a blog of sorts

#

@shy sluice update everything we have done so far and send the link in this thread

shy sluice
#

share i share the link itself?

dapper otter
minor kraken
#

Alr alr I'll check it out in a bit

shy sluice
dapper otter
#

just realised it has my irl info 😭

#

but okay idm

minor kraken
#

This a template?

shy sluice
#

yeah

#

i did a few tweaks tho

#

using css

dapper otter
#

i wanna learn but eh no time

shy sluice
#

@dapper otter hows the newsletter section

dapper otter
#

cool

shy sluice
#

proud of me yeah? 🥹

dapper otter
shy sluice
#

bro and chatgpt is too advance

dapper otter
#

YOU said u built it from scratch

shy sluice
#

what

#

no

#

i didnt

dapper otter
#

not from a damn template

#

but okay lets not discuss this here

shy sluice
#

but anything will work

dapper otter
#

its against the rules to fight

shy sluice
#

the website has no signs of the template

dapper otter
#

Delete these messages

minor kraken
#

soob what am i reading here

#

so there are regular links <a href="/asdadgsghfzcv"></a> and <a href="https://example.com/cheezits"></a>

you can also have a fragment link https://developer.mozilla.org/en-US/docs/Web/URI/Fragment/Text_fragments

MDN Web Docs

Text fragments allow linking directly to a specific portion of text in a web document, without requiring the author to annotate it with an ID, using particular syntax in the URL fragment. Supporting browsers are free to choose how to draw attention to the linked text, e.g. with a color highlight and/or scrolling to the content on the page. This ...

#

make a section with the id testimonials and you can make a fragment link with#testimonials

#

from there, the actual testimonial HTML is really simple

map out the structure - let's say you have 3 testimonials

#

these 3 testimonials are contained, so that they follow a different layout from the rest of the page (going horizontally)

#

for this container, you can use the display:flex declaration

#

you get a flexbox

#

if you're using chrome, you get this really cool utility

#

we makea de div

#

we make new div under de h2

#

fill with however many testimonies you want (just a div at this stage)

#

gib it a class so we can select the testimonials w css

#

i gib it a height and width until it looke fine

#

phil up the testimonial divs with whatever u want

#

select de div with the three divs

#

lets make it a flexbox

#

so far

HTML

<div>
  <h2 class="style1">TESTIMONIALS</h2>
  <div style="display: flex;">
    <div class="testimonial"><p>wery good</p><span>Mr White</span></div>
    <div class="testimonial"><p>wery good</p><span>Mr White</span></div>
    <div class="testimonial"><p>wery good</p><span>Mr White</span></div>
  </div>
</div>```

### css
```css
.testimonial {
  width: 25em;
  height:30em;
}```
#

brb

#

[work tings]

shy sluice
#

the css looks incomplete

#

@dapper otter lets hire this dude

dapper otter
#

I NEARLY DONT HAVE THE FINANCIALS TO HIRE PROFESSIONALS

minor kraken
#

Slap on another flexbox and change the alignment, change the font size and add an image

#

I have a tight deadline at work, so I'm really just focusing on that rn

#

I should be free tomorrow

shy sluice
#

its alright

#

are you pg?

dapper otter
minor kraken
#

17

dapper otter
#

quite advanced for our age tbf

minor kraken
#

Could tell by the way you all were talking

dapper otter
minor kraken
minor kraken
#

If you want a decent experience learning webdev and all I can help out

#

Taught several of my friends, shouldn't be too different here

#

Sent a req to both of you

shy sluice
#

sai time to leaarn something valuable

dapper otter
dapper otter
#

idk a thing about it

dapper otter
#

i want people to be able to upload reviews

#

like an open-forum of sorts?

minor kraken
#

In plain html, css and js?

#

You have a server?

#

If you don't you're better off using a widget thing

dapper otter
#

also i dont have a server

#

also idk CSS but i do know Javascript ig