Link to home
Start Free TrialLog in
Avatar of MOSTAGHASSI
MOSTAGHASSIFlag for United States of America

asked on

Bootstrap, Foundation, 960

Hi;

For website design i use dreamweaver ,please let me know that does it need that i use one of these framework for CSS( Bootstrap, Foundation, 960) and what  help can do for me using these framework?

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of MOSTAGHASSI

ASKER

Scott;thanks so much for your explanations,i have a question regarding these framework,as my understanding i must  and can use framework beside Dreamweaver so it help that i arrange layout pages for being responsive,but it doesn't mean that don't need the  Dreamweaver or any other  software like that because i need test the server codes,am i right?
Dreamweaver is your IDE.  You can use any text editor for HTML.  While Dreamweaver does have a preview of sorts, nothing is better than previewing in the actual browser. My favorite IDE Is https://www.jetbrains.com/  (see Webstorm or PHPstorm).  Notepad ++ is good too.

Otherwise, frameworks like bootstrap or jquery you add by adding references in  your code like below.
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>EE</title>
</head>
<body>

</body>
</html>

Open in new window