F5F Stay Refreshed Software Operating Systems Build it manually or leverage Dreamweaver?

Build it manually or leverage Dreamweaver?

Build it manually or leverage Dreamweaver?

Pages (3): Previous 1 2 3 Next
I
iiFlux
Member
60
03-12-2023, 02:13 AM
#11
Yes, you can simply add a link in the HTML.
I
iiFlux
03-12-2023, 02:13 AM #11

Yes, you can simply add a link in the HTML.

L
livtheviking
Posting Freak
846
03-13-2023, 01:31 PM
#12
I would build it myself. I use aptana, it's a solid tool for website creation and it's completely free. Perfect for beginners, especially those working with PHP.
L
livtheviking
03-13-2023, 01:31 PM #12

I would build it myself. I use aptana, it's a solid tool for website creation and it's completely free. Perfect for beginners, especially those working with PHP.

J
juanpiraigosa
Junior Member
26
03-14-2023, 02:00 AM
#13
Include the stylesheet in the HTML head section as shown: <link rel="stylesheet" type="text/css" href="cssfile.css"> Use Bootstrap for simple CSS needs and easier editing; it offers responsive container classes that help your site adapt to different screen sizes. Understanding how it works can be helpful before fully depending on it.
J
juanpiraigosa
03-14-2023, 02:00 AM #13

Include the stylesheet in the HTML head section as shown: <link rel="stylesheet" type="text/css" href="cssfile.css"> Use Bootstrap for simple CSS needs and easier editing; it offers responsive container classes that help your site adapt to different screen sizes. Understanding how it works can be helpful before fully depending on it.

L
livtheviking
Posting Freak
846
03-14-2023, 11:47 AM
#14
css enhances html by providing tools for styling and layout adjustments on web pages. it resides in a separate section, typically just before the body tag. you can adjust elements like colors, spacing, and fonts directly within the css file. in the example, the h1 tag gets specific formatting, while the rest of the page uses different styles.
L
livtheviking
03-14-2023, 11:47 AM #14

css enhances html by providing tools for styling and layout adjustments on web pages. it resides in a separate section, typically just before the body tag. you can adjust elements like colors, spacing, and fonts directly within the css file. in the example, the h1 tag gets specific formatting, while the rest of the page uses different styles.

1
1Point10
Member
144
03-15-2023, 03:38 AM
#15
It's not required; linking external files works well, especially with many classes—use `classNames` inside the div. You can also add inline styles via `<style>` tags.
1
1Point10
03-15-2023, 03:38 AM #15

It's not required; linking external files works well, especially with many classes—use `classNames` inside the div. You can also add inline styles via `<style>` tags.

P
168
03-15-2023, 03:51 AM
#16
I never tried that. Our teacher basically assigned us a task and told us to be lucky and have fun. That’s how I discovered one of the methods.
P
Pixelplayer145
03-15-2023, 03:51 AM #16

I never tried that. Our teacher basically assigned us a task and told us to be lucky and have fun. That’s how I discovered one of the methods.

_
_NinjaSam_
Member
170
03-18-2023, 10:50 AM
#17
Your approach works well for beginners, but handling large CSS files like Bootstrap (6000 lines) becomes challenging. Also, updating styles across multiple pages requires changing each individually, whereas using an external file lets you modify just one file.
_
_NinjaSam_
03-18-2023, 10:50 AM #17

Your approach works well for beginners, but handling large CSS files like Bootstrap (6000 lines) becomes challenging. Also, updating styles across multiple pages requires changing each individually, whereas using an external file lets you modify just one file.

B
Benomite
Member
132
03-18-2023, 02:56 PM
#18
<html>
<head>
<link href="MyCSSFile.css" rel="stylesheet" type="text/css" />
</head>
</html>
B
Benomite
03-18-2023, 02:56 PM #18

<html>
<head>
<link href="MyCSSFile.css" rel="stylesheet" type="text/css" />
</head>
</html>

J
Jerryx01
Posting Freak
870
03-30-2023, 07:10 PM
#19
I generate content each time I encounter <style> USE .CSS FILES FOR THE LOVE OF EVERYTHING!!
J
Jerryx01
03-30-2023, 07:10 PM #19

I generate content each time I encounter <style> USE .CSS FILES FOR THE LOVE OF EVERYTHING!!

R
rakapaka3
Member
59
03-30-2023, 10:28 PM
#20
<html>
<head>
<link href="MyCSSFile.css" rel="stylesheet" type="text/css" />
<script src="MyJSFile.js" type="text/javascript"/>
</head>
</html>
R
rakapaka3
03-30-2023, 10:28 PM #20

<html>
<head>
<link href="MyCSSFile.css" rel="stylesheet" type="text/css" />
<script src="MyJSFile.js" type="text/javascript"/>
</head>
</html>

Pages (3): Previous 1 2 3 Next